body {
    font-family: "GalanoGrotesque",sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.registration-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 100px;
}

.phone-input input {
    flex: 1;
}

button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

.checkbox{ width:auto !important; float:left; }

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .registration-form {
        padding: 15px;
    }
} 