/* Genel Stiller */

.container1 {
    padding: 30px 30px;
     
    max-width: 400px;
     
    max-height: 400px;
    background: #e4f8f1;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    margin-top:auto;
    margin: auto;
    margin-left: auto;
    margin-right: auto;
    float: center;
}

.form-container {
    padding: 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.form-header p {
    margin: 5px 0 0;
    color: #666;
}

/* Tab Stilleri */
.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tab-button {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    background: #e9ecef;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    color: #333;
}

.tab-button.active {
    background: #016939;
    color: white;
}

.tab-button:not(:last-child) {
    border-right: 1px solid #dcdcdc;
}

/* Form Stilleri */
.form {
    display: none;
    flex-direction: column;
}

.form.active {
    display: flex;
}

.form input {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form button {
    padding: 10px;
    font-size: 16px;
    background: #01a16c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.form button:hover {
    background: #0d884e;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        margin: 0 20px;
    }
}
