.card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
 
.button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #1D61E7;
    color: #fff;
    font-size: 16px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
}

.button:hover {
    background: #174bb5;
}

.input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.error {
    color: var(--error-color);
    margin: 8px 0;
}

.success {
    color: var(--success-color);
    margin: 8px 0;
}

.form-group {
    margin-bottom: 16px;
    width: 100%;
}

.forgot-link {
    display: block;
    margin-top: 4px;
    margin-bottom: 12px;
    color: #1D61E7;
    font-size: 14px;
    text-align: right;
    text-decoration: underline;
    cursor: pointer;
}

/* veya ilgili başlık stilinin olduğu dosyada */
.header-title {
    margin-top: -20px !important;
}