* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #4b6cb7, #182848);
    padding: 20px;
}

.container {
    position: relative;
    max-width: 600px;
    /* Increased width */
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    /* Increased padding */
}

.container header {
    position: relative;
    font-size: 28px;
    /* Slightly larger header */
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.form {
    position: relative;
}

.input-box {
    margin-bottom: 25px;
}

.input-box label {
    color: white;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.input-box input,
.input-box select {
    position: relative;
    height: 55px;
    /* Slightly taller inputs */
    width: 100%;
    outline: none;
    font-size: 16px;
    color: #333;
    margin-top: 8px;
    border: 1px solid #aaa;
    border-radius: 6px;
    padding: 0 15px;
}

.input-box input:focus,
.input-box select:focus {
    box-shadow: 0 0 0 4px rgba(75, 108, 183, 0.3);
}

button {
    width: 100%;
    color: #fff;
    height: 55px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 6px;
    background: linear-gradient(45deg, #4b6cb7, #182848);
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(45deg, #182848, #4b6cb7);
    transform: scale(1.02);
}

@media screen and (max-width: 650px) {
    .container {
        width: 95%;
        padding: 30px;
    }
}