/* Google Font Link (consistent with your other styles) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* Basic body styling to center content */
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5; /* Consistent with login page background */
    padding: 30px;
    box-sizing: border-box; /* Include padding in element's total width and height */
    font-family: "Poppins", sans-serif; /* Consistent font */
    margin: 0;
    padding: 0;
}

/* Container for the reset password box */
.reset-password-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The actual reset password box/card */
.reset-password-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

/* Icon styling */
.reset-password-icon {
    font-size: 60px; /* Large icon */
    color: #007344; /* Secondary Color */
    margin-bottom: 20px;
}

/* Heading styling */
.reset-password-box h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

/* Paragraph text styling */
.reset-password-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Specific styling for the email address */
.reset-password-box .email-address {
    font-size: 18px;
    color: #ED891A; /* Main Color */
    margin-bottom: 25px;
    font-weight: 600; /* Make it a bit bolder */
}

/* Back to login button styling */
.reset-password-box .back-to-login {
    display: inline-block;
    background: #ED891A; /* Main Color */
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none; /* Ensure no default button borders */
    cursor: pointer; /* Indicate it's clickable */
}

.reset-password-box .back-to-login:hover {
    background: #e07b0e; /* Slightly darker main color on hover */
}

/* Responsive adjustments for the reset password page */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    .reset-password-box {
        padding: 30px;
    }
    .reset-password-icon {
        font-size: 50px;
    }
    .reset-password-box h2 {
        font-size: 24px;
    }
    .reset-password-box p {
        font-size: 15px;
    }
    .reset-password-box .email-address {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    .reset-password-box {
        padding: 20px;
    }
    .reset-password-icon {
        font-size: 45px;
    }
    .reset-password-box h2 {
        font-size: 22px;
    }
    .reset-password-box p {
        font-size: 14px;
    }
}