body {
    font-family: Arial, sans-serif;
    background-color:white;
    display: flex;
    justify-content: center;
    align-items:center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: whitesmoke;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 400px;
    text-align: center;
}

.holder {
    width:max-content;
    border:none;
    border-bottom:1px solid black;
    height:25px;
    background:transparent;
    color:#0c0101;

}
h2 {
    margin-bottom: 20px;
    color: #333;
}

label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.button {
    width: 100%;
    padding: 10px;
    background-color: #04b8be;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.button:hover {
    background-color: #03aa97;
}

#error-message {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}
