/* Full-width input fields */
input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    background-color: #dedede;
}

input:focus-visible, button:focus-visible {
    outline: none;
}

/* Set a style for all buttons */
.l-container>button {
    background-color: #c1a122;
    color: white;
    padding: 14px 20px;
    margin: 0;
    margin-top: 7.5%;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
}

.l-container>button:hover {
    opacity: 0.8;
}

/* Center the image and position the close button */
.l-avatar-container {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

img.l-avatar {
    width: 15%;
    border-radius: 50%;
}

@media screen and (max-width: 1000px) {
    img.l-avatar {
        width: 30%;
    }
    .l-modal-content {
        width: 100% !important;
    }
}

.l-container {
    padding: 16px;
    margin: 2.5% 10%;
}

/* The Modal (background) */
#login {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content/Box */
.l-modal-content {
    display: flex;
    flex-direction: column;
    background-color: #272727;
    margin: 5%; 
    border: 2px solid #93939390;
    width: 40%; 
    height: max-content;
    border-radius: 10px;
}