/* Verification Page Styles */
/* Footer and navigation styles are NOT included here */

body {
    font-family: 'Raleway', sans-serif;
    background-color: #F8F8F8;
}

/* Verification Container */
.verification-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* Verification Card */
.verification-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Page Title */
.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Page Subtitle */
.page-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Form Styling */
.verification-form {
    width: 100%;
}

/* PIN Inputs Container */
.pin-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

/* Individual PIN Input */
.pin-input {
    width: 60px;
    height: 60px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #333333;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid #333333;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.pin-input:focus {
    border-bottom-color: #E8175D;
}

.pin-input::-webkit-outer-spin-button,
.pin-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Resend Text */
.resend-text {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 28px;
}

.resend-link {
    color: #4A90E2;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.3s ease;
}

.resend-link:hover {
    color: #2E5C99;
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    max-width: 300px;
    background: #f3687f;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 24px;
    display: block;
    box-shadow: 0 4px 8px rgba(232, 23, 93, 0.25);
}

.btn-submit:hover {
    background: #D01550;
    box-shadow: 0 6px 12px rgba(232, 23, 93, 0.35);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(232, 23, 93, 0.25);
}

/* Signup Text */
.signup-text {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 0;
}

.signup-link {
    color: #4A90E2;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: #2E5C99;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .verification-container {
        padding: 40px 15px;
    }
    
    .verification-card {
        padding: 40px 30px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 15px;
    }
    
    .pin-input {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .pin-inputs {
        gap: 10px;
    }
    
    .btn-submit {
        font-size: 17px;
        padding: 14px 35px;
    }
}

@media (max-width: 576px) {
    .verification-container {
        padding: 30px 12px;
        min-height: auto;
    }
    
    .verification-card {
        padding: 35px 24px;
        border-radius: 10px;
    }
    
    .page-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .page-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .pin-input {
        width: 45px;
        height: 45px;
        font-size: 20px;
        border-bottom-width: 2px;
    }
    
    .pin-inputs {
        gap: 8px;
    }
    
    .resend-text {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .btn-submit {
        font-size: 16px;
        padding: 13px 30px;
        max-width: 100%;
    }
    
    .signup-text {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .verification-card {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle {
        font-size: 13px;
    }
    
    .pin-input {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .pin-inputs {
        gap: 6px;
    }
}
