body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #191970; /* Blue background color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 280px;
}

.login-box {
    padding: 30px;
    background-color: #ffffff; /* White background color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Box shadow for depth */
}

.login-box h2 {
    margin-bottom: 20px;
    color: #191970; /* Dark blue color */
    text-align: center;
}

.textbox {
    position: relative;
    margin-bottom: 20px;
}

.textbox input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.button {
    width: 100%;
    padding: 10px;
    color: #ffffff;
    background-color: #191970; /* Dark blue button background color */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0f0c52; /* Darken the button color on hover */
}
