/* assets/uye-giris.css */

.form-wrapper {
    background-color: #f9fafb;
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}
.form-container {
    max-width: 450px;
    width: 100%;
    margin: auto;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}
.form-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #1f2937;
}
.form-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}
.input-group {
    margin-bottom: 1.5rem;
}
.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}
.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-group input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.submit-button {
    width: 100%;
    background-color: #4f46e5;
    color: white;
    padding: 0.875rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}
.submit-button:hover {
    background-color: #4338ca;
}
.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #4b5563;
    font-size: 0.9rem;
}
.form-footer a {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
}
.form-footer a:hover {
    text-decoration: underline;
}
.error-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    background-color: #fee2e2;
    color: #991b1b;
    text-align: center;
    border: 1px solid #fca5a5;
}
