* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3s);
}

h1 {
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-size: 2rem;
    color: white;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    text-align: left;
    color: #f1f1f1;
    opacity: 0.9;
}

input {
    width: 100%;
    padding: 8px 7px;
    border: 2px solid grey;
    border-radius: 10px;
    outline: none;
}

select {
    width: 100%;
    padding: 8px 7px;
    border: 2px solid grey;
    border-radius: 10px;
    outline: none;
    height: auto;
}

input,select{
    background: rgba(255,255,255,0.9);
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

button {
    width: 100%;
    padding: 10px;
    margin: auto;
    display: block;
    margin-top: 10px;
    background: linear-gradient(135deg,#ff7a18,#ffb347);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;

}

button:hover {
    background: #212020;
    transition: 0.3s;
    opacity: 0.9s;
    transform: translateY(-2px);
}

@media (max-width: 480px){
.container{
padding: 15px;
}

h1{
font-size: 20px;
}

button{
padding: 8px;
}
}