body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f0f8ff, #d6f5e3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 340px;
    transition: 0.3s ease-in-out;
}

.container:hover {
    transform: scale(1.02);
}

h2 {
    color: #2e8b57;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

input {
    width: 95%;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: 0.2s;
    font-size: 14px;
}

input:focus {
    border-color: #2e8b57;
    outline: none;
    box-shadow: 0 0 5px rgba(46, 139, 87, 0.3);
}

button {
    width: 100%;
    padding: 12px;
    background-color: #2e8b57;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #246b45;
    transform: translateY(-2px);
}

p {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

a {
    color: #2e8b57;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
}

a:hover {
    text-decoration: underline;
}