.music-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
}

.music-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #161616;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
}

.music-item:hover {
    background: #222;
}

.music-info {
    display: flex;
    flex-direction: column;
}

.music-title {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.music-genre {
    color: #888;
    font-size: 14px;
}

.music-duration {
    display: flex;
    align-items: center;
    color: #aaa;
    font-size: 14px;
}

.clock-icon {
    width: 14px;
    height: 14px;
    background: url('clock-icon.svg') no-repeat center;
    background-size: contain;
    margin-right: 5px;
}

.musicbox {
    background: #020211;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    border-radius: 10px
}

.login-container {
    display: flex;
    width: 80%;
    max-width: 1000px;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
}

.login-box {
    width: 50%;
    padding: 40px;
    background: #161616;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #bbb;
}

a {
    color: #f79d65;
    text-decoration: none;
}

.input-group {
    margin-top: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: none;
    background: #222;
    color: white;
    border-radius: 6px;
    font-size: 14px;
}

.remember-me {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.remember-me label {
    margin-left: 8px;
    font-size: 14px;
    color: #bbb;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #f79d65;
    color: black;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.divider {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #bbb;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border: none;
    background: #222;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.google-btn img {
    width: 18px;
    margin-right: 10px;
}

.login-info {
    width: 50%;
    background: linear-gradient(45deg, #002244, #8b4b2b);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.info-content {
    max-width: 80%;
}

.headphones-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.features {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: 45%;
}

.exclusive-section {
    width: 90%;
    text-align: center;
}

h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 span {
    color: #f79d65;
}

p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

.music-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.music-item {
    display: flex;
    width: 100%;
    align-items: center;
    background: #061222;
    border-radius: 5px;
    overflow: hidden;
    padding: 10px;
    transition: 0.3s;
}

.music-item:hover {
    background: #222;
}

.music-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.music-info {
    padding-left: 15px;
    flex: 1;
}

.music-info h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.artist {
    font-size: 14px;
    color: #f79d65;
}

.stats {
    font-size: 12px;
    color: #bbb;
}

