body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    display: block;
    justify-content:flex-start;
    align-items: center;
    height: 100vh;
    margin: auto 300px;
}

.form-container {
    background: rgba(0, 0, 0, 0.5);
    margin: auto;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    display: flex;
    gap: 20px;

    
}

input, select, button {
   box-sizing: border-box;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: none;
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction:row;
}

button {
    background: #2575fc;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #1a54b8;
}
