body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Card styling (same as login design) */
.card {
    background: #fff;
    width: 100%;
    max-width: 400px;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Title and subtitle */
h2 {
    color: #2e7d32;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 0.9rem;
    color: #6b6b6b;
    margin-bottom: 1.8rem;
}

/* Input group */
.input-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s ease;
}

.input-group input:focus {
    border-color: #2e7d32;
    outline: none;
    box-shadow: 0 0 5px rgba(46, 125, 50, 0.2);
}

/* Green button same as login page */
.login-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #256828;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

/* Error message */
.error-message {
    margin-top: 1rem;
    background: #ffeaea;
    color: #d93025;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Back to login link */
.back-to-login {
    margin-top: 1.5rem;
}

.back-to-login a {
    color: #2e7d32;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.back-to-login a:hover {
    text-decoration: underline;
}
