body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    width: 420px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header img {
    max-width: 150px;
}

.header h1 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.header a {
    color: #0078d7;
    font-size: 14px;
    text-decoration: none;
}

.header a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 14px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

input:focus {
    border-color: #0078d7;
    outline: none;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.buttons button {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cancel {
    background-color: #ddd;
    color: #333;
}

.submit {
    background-color: #0078d7;
    color: #fff;
}

.footer {
    text-align: center;
    margin-top: 15px;
}

.footer a {
    color: #0078d7;
    font-size: 14px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* MODAL ---------------------------------------------------*/

/* Popup (arka plan) */
.modal {
    display: none;
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); 
}


.modal-content {
    background-color: #fefefe;
    margin: 5% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 60%; 
    border-radius: 4px;
}

.modaltitlediv{
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: red; */
    border-bottom: 1px solid grey;
}

.modaltitle{
    font-size: 25px;
    color: #3b77ac;
}

.modalclosebtndiv{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalclosebtndiv button{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 4px;
}

.modaltitlealtacik{
    margin-top: 20px;
    color: #4A4A4A;
    font-size: 20px;
}

.modal2titlediv{
    margin-top: 30px;
}

.modal2titletitle{
    font-size: 25px;
    color: #3b77ac;
}

.modal2titleaciklama1{
    font-size: 20px;
    color: #4A4A4A;

}