body {
    background-color: #000c39;
    font-family: Arial, sans-serif;
}

.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;
}