* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
}

.login-box {
    background-color: white;
    width: 350px;
    padding: 30px;

    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 25px;
}

.login-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;

    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-box button {
    width: 100%;
    padding: 12px;

    background-color: #007bff;
    color: white;

    border: none;
    border-radius: 5px;

    cursor: pointer;
}

.login-box button:hover {
    background-color: #0056b3;
}

.login-box p {
    text-align: center;
    margin-top: 20px;
}

.login-box a {
    color: #007bff;
    text-decoration: none;
}