/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #0d2c48; /* Background color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px 30px;
    width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h2 {
    color: white;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select, button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

input, select {
    background: #fff;
}

button {
    background: #4CAF50;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #45a049;
}

.phone-container {
    display: flex;
    gap: 5px;
}

.phone-container select {
    flex: 2;
}

.phone-container input {
    flex: 3;
}

.disclaimer {
    font-size: 12px;
    color: #ddd;
    margin-top: 20px;
    line-height: 1.5;
}

.disclaimer a {
    color: #4CAF50;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}
