* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    background-color: #080710;
}

#signin {
    position: absolute;
    height: 520px;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    overflow: hidden;
}

#content {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 400px;
    height: 230px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgb(0, 0, 0, 9);
    background: #222;
    border: 1px solid black;
}

#signinTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
}

#section {

    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#inputLog {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgb(255, 255, 255, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    justify-content: center;
    align-items: center;
    color: white;
}

#inputPass {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgb(255, 255, 255, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    justify-content: center;
    align-items: center;
    color: white;
}

::placeholder {
    color: #e5e5e5;
}

#btnLog {
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

#load {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #3498db;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#login-error-msg-holder {
    color: red;
}