/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    text-align: center;
}

.container {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    width: 350px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

label {
    font-size: 1rem;
    display: block;
    margin-top: 10px;
}

input {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
}

button {
    background: #ff4081;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 15px;
}

button:hover {
    transform: scale(1.1);
    background: #ff0055;
}

p {
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: bold;
}
