﻿.form-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    color: #888;
    transition: color 0.3s ease;
}

    .form-close-btn:hover {
        color: #000;
    }
.form-container {
    position: relative; /* Butonun konumlanması için */
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

    .form-container h2 {
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 30px;
    }


.form-group label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

textarea.form-control {
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    background-color: #007bff;
    color: white;
    transition: background-color 0.3s ease;
}

    button[type="submit"]:hover {
        background-color: #0056b3;
    }
