form{
    display: flex;
    gap: 10px;
    margin: 20px;
    align-items: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
}
input, select{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 300px;
}
body{
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    font-family: inherit;
}



form {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background: #fff;
    border-radius: 8px;
    align-items: stretch;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-weight: 600;
}

input, select, textarea, button {
    width: 100%;
    box-sizing: border-box;
}

.field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

button {
    padding: 16px 0;
    width: 100%;
    background: linear-gradient(90deg, #7755FF, #2F2CE9);
    border-radius: 30px;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(119, 85, 255, 0.4);
}

