
body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Box container */
.box {
    width: 400px;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Heading */
h2 {
    margin-bottom: 20px;
    text-align: center;
}

/* Inputs */
input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Buttons */
button {
    width: 100%;
    padding: 10px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    box-sizing: border-box;
}

button:hover {
    background: #0052a3;
}

/* Info message */
.info {
    color: #333;
    font-size: 14px;
    text-align: center;
}

/* Links */
a {
    display: block;
    text-align: center;
    margin-top: 15px;
    text-decoration: none;
    color: #0066cc;
}

a:hover {
    text-decoration: underline;
}
