body {
    background-color: #000c39;
    font-family: Arial, sans-serif;
}

        /* Audio Seek Bar Styling - Override login.css */
        input#seekBar,
        input.audio-seek {
            padding: 0px !important;
            border: none !important;
            border-radius: 0px !important;
            background: transparent !important;
            -webkit-appearance: none !important;
            appearance: none !important;
            height: 6px !important;
            background: #ddd !important;
            outline: none !important;
        }

        /* Webkit browsers (Chrome, Safari) */
        input#seekBar::-webkit-slider-track,
        input.audio-seek::-webkit-slider-track {
            height: 6px !important;
            background: #ddd !important;
            border-radius: 3px !important;
        }

        input#seekBar::-webkit-slider-thumb,
        input.audio-seek::-webkit-slider-thumb {
            -webkit-appearance: none !important;
            appearance: none !important;
            height: 18px !important;
            width: 18px !important;
            border-radius: 50% !important;
            background: #667eea !important;
            cursor: pointer !important;
            border: 2px solid #fff !important;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
        }

        input#seekBar::-webkit-slider-thumb:hover,
        input.audio-seek::-webkit-slider-thumb:hover {
            background: #764ba2 !important;
            transform: scale(1.1) !important;
        }

        /* Firefox */
        input#seekBar::-moz-range-track,
        input.audio-seek::-moz-range-track {
            height: 6px !important;
            background: #ddd !important;
            border-radius: 3px !important;
            border: none !important;
        }

        input#seekBar::-moz-range-thumb,
        input.audio-seek::-moz-range-thumb {
            height: 18px !important;
            width: 18px !important;
            border-radius: 50% !important;
            background: #667eea !important;
            cursor: pointer !important;
            border: 2px solid #fff !important;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
        }

        input#seekBar::-moz-range-thumb:hover,
        input.audio-seek::-moz-range-thumb:hover {
            background: #764ba2 !important;
            transform: scale(1.1) !important;
        }

.login-main {
    padding: 60px 40px;
}
.login-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 30px 0;
}

.welcome-section {
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
}

form.login-form {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.welcome-section h2 {
    color: white !important;
    font-size: 2.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.welcome-section p {
    color: white !important;
    font-size: 14px;
    font-weight: 700;
    max-width: 379px;
    margin: 0 auto;
}

.login-section {
    padding: 30px;
    color: white;
    width: 100%;
    border-left: 1px solid #fff;
}

.options label {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}


.form-inputs label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-inputs input, textarea, select {
    padding: 8px 10px;
    border: none;
    border-radius: 8px;
    outline: none;
    width: 100%;
    margin-bottom: 11px;
}

.form-inputs select {
    border-radius: 3px;
}

.form-inputs textarea {
    border-radius: 3px;
    min-height: 100px;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-container {
    position: relative;
}

i#togglePassword, i#toggleConfirmPassword {
    position: absolute;
    color: #000;
    right: 10px;
    top: 12px;
}

.options {
    margin-bottom: 10px;
    margin-top: 20px;
}

.login-button {
    display: flex;
    gap: 20px;
}


.login-button a, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #000;
    text-decoration: none;
    text-align: center;
}

.login-button a:hover ,     .login-button button:hover
{
    background-color: #B52AC6;
}


form.login-form .forget-password {
    color: #ccc;
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.signup-main .login-form {
    max-width: 100%;
}

.signup-main .login-section {
    border-left: none;
}

.signup-btns {
    margin-top: 30px;
}
