/* forgot_password.css */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f4f6f9;
}

.forgot-page {
    display: flex;
    min-height: 100vh;
}

/* Left Panel: Form */
.card-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

.card-content {
    width: 350px;
    text-align: center;
}

.logo {
    font-size: 50px;
    margin-bottom: 15px;
}

h2 {
    margin: 10px 0;
    color: #333;
}

p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background-color: #45a049;
}

.error-message {
    color: red;
    margin-bottom: 10px;
}

.success-message {
    color: green;
    margin-bottom: 10px;
}

.back-login {
    margin-top: 15px;
    font-size: 14px;
}

.back-login a {
    color: #4CAF50;
    text-decoration: none;
}

.back-login a:hover {
    text-decoration: underline;
}

/* Right Panel: Graphic */
.graphic-panel {
    flex: 1;
    background: #4CAF50;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.graphic-panel h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.graphic-panel p {
    font-size: 16px;
    line-height: 1.5;
}
