.login-card {
    border-radius: 25px;
}

.hero-section {
    position: relative;
    min-height: 550px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(133, 175, 237, 0.15),
        rgba(127, 172, 239, 0.35)
    );
}

.hero-content {
    position: absolute;
    bottom: 10px;
    left: 60px;
    max-width: 550px;
}

.input-group-text {
    border-color: #dee2e6;
}

.form-control {
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #0d6efd;
}

@media (max-width: 991px) {
    .login-card {
        border-radius: 20px;
    }
}

.verify-wrapper{
    min-height:100vh;
}

.verify-card{
    width:100%;
    max-width:500px;
}

.verify-title{
    font-size:28px;
    font-weight:700;
    color:#494949;
}

.verify-text{
    font-size:14px;
    color:#444;
    line-height:1.7;
}

.otp-group {
    flex-wrap: nowrap;
}

.otp-input{
    width:40px;
    height:40px;
    border-radius:18px;
    border:2px solid #d7dbea;
    background:#f8f9fd;
    text-align:center;
    font-size:28px;
    font-weight:700;
    outline:none;
}


.otp-input:focus{
    border-color:#0d47a1;
    box-shadow:none;
}

.verify-envelope-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.2;
    font-size: 100px;
}

.verify-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.2;
    font-size: 100px;
}

.verify-btn{
    background:#0d47a1;
    border:none;
    height:72px;
    border-radius:18px;
    font-size:22px;
    font-weight:600;
}

.verify-btn:hover{
    background:#0b3b88;
}

.resend-link{
    color:#0d47a1;
    font-weight:600;
    text-decoration:none;
}

.resend-link:hover{
    text-decoration:underline;
}

@media(max-width:576px){

    .verify-title{
        font-size:36px;
    }

    .verify-text{
        font-size:18px;
    }

    .otp-input{
        width:50px;
        height:70px;
        font-size:24px;
    }
}