.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    gap: 24px;
    height: auto;
    min-height: 100vh;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--main-white);
    background-color: var(--main-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    width: 92%;
    max-width: 800px;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    width: 92%;
    max-width: 800px;
    background-color: var(--main-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.inner-product {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.all-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

input, select, textarea {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    box-shadow: var(--shadow);
    font-size: 16px;
    transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 2px rgba(var(--main-color-rgb), 0.2);
}

.adet-sect {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

button[type="submit"] {
    background-color: var(--main-color);
    color: var(--main-white);
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    width: auto;
    min-width: 200px;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        min-height: 120vh;
    }
    
    h2 {
        font-size: 18px;
        font-weight: 300;
        margin-top: 80px;
    }
    
    form {
        padding: 20px;
    }
    
    .inner-product {
        flex-direction: column;
    }
    
    .adet-sect {
        flex-direction: column;
        gap: 16px;
    }
    
    button[type="submit"] {
        width: 100%;
    }
}