body {
    background-image: linear-gradient(rgb(237, 212, 245), rgb(211, 98, 255));
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mainDiv {
    width: 90%;
    max-width: 800px;
    display: none;
}

#loginDiv {
    width: 90%;
    max-width: 800px;
}

#welcomeDiv {
    border: 3px solid;
    border-radius: 20px;
    padding: 20px;
    overflow-wrap: break-word;
}

#topButtons {
    position: absolute;
    top: 20px;
    right: 20px;
}

#buttonsDiv {
    float: right;
}

#browserDiv {
    border: 3px solid;
    border-radius: 20px;
    padding: 20px;
}

#nameSpan {
    color: purple;
    font-weight: bolder;
}

input[type="file"] {
    display: none;
}

#folderInput {
    padding: 20px;
    border-radius: 20px;
    width: 90%;
}

.loginInput {
    width: 80%;
    max-width: 400px;
    padding: 20px 30px;
    margin: 10px;
    border-radius: 20px;
    border: 2px solid rgb(46, 46, 141);
    background-color: transparent;
    font-size: 18px;
}

.loginInput:focus {
    outline: none;
}

label {
    font-size: 24px;
    font-weight: bolder;
}