﻿.hesap_container {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: #f0f4f8;*/ 
}

.hesap_box {
    background-color: white; 
    border: 1px solid #1D366A; 
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px; 
    width: 100%;
    transition: transform 0.3s;
}

    .hesap_box:hover {
        transform: translateY(-5px); 
    }

h2 {
    color: #1D366A; 
    margin-bottom: 20px; 
}

.form-group {
    margin-bottom: 20px; 
}


.form-control {
    border: 1px solid #1D366A; 
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box; 
    transition: border-color 0.3s, box-shadow 0.3s; 
}

    .form-control:focus {
        border-color: #1D366A; 
        box-shadow: 0 0 5px rgba(29, 54, 106, 0.5);
    }

.text-danger {
    font-size: 0.875rem;
}

.btn {
    background-color: #1D366A;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

    .btn:hover {
        background-color: #163054; 
        transform: translateY(-2px); 
    }

a {
    color: #1D366A; 
    text-decoration: none; 
}

    a:hover {
        text-decoration: underline;
    }
