body {
    font-family: Arial;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.box {
    background: white;
    padding: 25px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
}

.box h1,
.box h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2b8a3e;
}

.box input,
.box select {
    width: 100%;
    padding: 8px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.box button,
.box input[type="submit"] {
    width: 100%;
    padding: 9px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background: #2b8a3e;
    color: white;
    cursor: pointer;
}

.box button:hover,
.box input[type="submit"]:hover {
    background: #23672c;
}

.error {
    margin-top: 8px;
    color: red;
    font-size: 13px;
}


.login-link {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.login-link a {
    color: #2b8a3e;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}
