@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #c9ffbf, #ffafbd);
    margin: 0;
    padding: 0;
}

.container {
    width: 380px;
    margin: 80px auto;
    padding: 25px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 20px;
}

input, button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

button {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #388e3c;
}

p {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}
a {
    color: #2e7d32;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
