/**
 * User subscription functinality styles
 */
.custom-form label{
    font-size: 18px;
    line-height: 1.95;
    font-weight: bold;
    color: #fff;
}
.custom-form input{
    border: solid 1px #025495;
    border-radius: 5px;
    padding: 20px;
    margin-top: 15px;
    height: 60px;
    color: #000;
}
.custom-form textarea{
	border: solid 1px #025495;
    border-radius: 5px;
    padding: 20px;
    margin-top: 15px;
    color: #000;
	resize: vertical;
    overflow: auto;
}
.custom-form .forgot-password a, .custom-form #loginMessage a{
    font-size: 18px;
    line-height: 1.95;
    font-weight: bold;
    color: #fff;
	text-decoration: none;
	position: relative;
}
.custom-form .forgot-password a::after, .custom-form #loginMessage a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F0B95C; /* Adjust the color as needed */
    transition: width 0.4s ease, left 0.4s ease;
}

.custom-form #loginMessage{
	color: #fff;
}

.custom-form #loginMessage a:hover::after {
    width: 100%;
    left: 0;
}

.custom-form .forgot-password a:hover::after {
    width: 100%;
    left: 0;
}
.password-field {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 15px; /* Ensures consistency with other input fields */
}

.password-field input {
    width: 100%;
    padding-right: 30px; /* Space for the icon */
}

#togglePassword {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(calc(-50% + 7.5px)); /* Adjust for margin-top */
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url('data:image/svg+xml;charset=UTF-8, \
        <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="black" stroke-width="2"> \
        <path d="M1.5 12C1.5 12 5.5 4.5 12 4.5s10.5 7.5 10.5 7.5-4 7.5-10.5 7.5S1.5 12 1.5 12z" /> \
        <path class="eye-dot" d="M12 9.75a2.25 2.25 0 100 4.5 2.25 2.25 0 000-4.5z" /></svg>') center no-repeat;
    background-size: contain;
}

#togglePassword.show-password {
    background: url('data:image/svg+xml;charset=UTF-8, \
        <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="black" stroke-width="2"> \
        <path d="M1.5 12C1.5 12 5.5 4.5 12 4.5s10.5 7.5 10.5 7.5-4 7.5-10.5 7.5S1.5 12 1.5 12z" /> \
        <path d="M3 3l18 18" stroke="black" stroke-width="2" /></svg>') center no-repeat;
    background-size: contain;
}
.custom-form .form-row{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 30px;
    margin-bottom: 20px;
}
.custom-form .form-row-wrap{
    width: 100%;
    margin-bottom: 20px;
}
.custom-form .form-row-wrap.submit{
    text-align: center;
    margin-top: 50px;
}
.custom-form .form-input{
    width: 50%;
}
.custom-form .form-input.full-width{
    width: 100%
}
.custom-form .form-input.submit{
    width: 100%;
    text-align: center;
}

.custom-form .custom-form-btn{
    padding: 19px 32px;
    border-radius: 33px; 
    color: #000;
    background-color: #fff;
    border: solid 2px #fff;
}
.custom-form .custom-form-btn:hover{
    background-color: transparent;
}

.custom-form .register .custom-form-btn{
    padding: 19px 48px;
    text-align: center;
}


.user-info{
    display: flex;
    justify-content: center;
    color: #fff;
    flex-direction: column;
}

.user-info h4{
    color: #fff;
    text-align: center;
    margin: 0;
}
.user-info h4 span{
    color:#F0B95C;
}

.user-info p{
    color: #fff;
    text-align: center;
    margin: 15px 0 30px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.95;
}

.user-info .btn-group{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.user-info .btn-group .custom-form-btn{
    width: 210px;
}

@media (max-width: 600px) {
    .custom-form .form-row{
        flex-direction: column;
        gap:20px;
    }
    .custom-form .form-input{
    width: 100%;
    }
.user-info .btn-group .custom-form-btn{
    padding:10px 16px;
    font-size: 12px;
    }
    .custom-form .custom-form-btn{
        font-size:12px;
    }
    .custom-form .register .custom-form-btn{
        padding: 10px 20px;
    }
}