*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: sans-serif;
}

body{
    background: url(background.jpg) no-repeat;
    background-position: center;
    background-size:cover;
    min-height: 180vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 10px;
}

html, body {
    height: auto;
    margin: 0;
    padding: 0;
}

.container{
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 100%;
    max-width: 1400px;
    max-height: 1500px;
    animation: fadeInUp 1s ease-out;
}

h2{
    text-align: center;
    margin-bottom: 25px;
    color: #111010;
    animation: slideIn 1s ease-in-out;
}

.Input-box{
    display: flex;
    flex-direction:column;
    gap: 5px;
}

label{
    font-weight: 500;
    color: #151414;
}


input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

input:focus,
textarea:focus,
select:focus {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

textarea {
    resize: none;
}

input[type="radio"],
input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.1);
}

button {
    margin-top: 20px;
    padding: 12px;
    border: none;
    background: orangered;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition:0.3s;
    font-size: 16px;
}

button:hover {
    background: orange;
    transform: scale(1.03);
}





