body {
    background-image: url(images/login.jpg);
    background-size: cover;
    height: 97vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boxlogin {
    width: 300px;
    height: 350px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 50%;
    height: auto;
}

.boxusername,
.boxpassword {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
}

.boxusername label,
.boxpassword label{
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.boxusername input,
.boxpassword input {
    width: 100%;
    height: auto;
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
    box-sizing: border-box;
}

.submit {
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    button {
        width: 100%;
        height: 40px;
        font-size: 20px;
        border: none;
        border-radius: 10px;
        background-color: #4CAF50;
        color: white;
        cursor: pointer;
    }
}