body {
    padding: 2.75rem 0;
    font-size: 16px;
    
    background-image: url('/public/assets/images/sign-in-background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    overflow-x: hidden;
    overflow-y: auto;
}

#sign-in-title,
#sign-in-footer {
    user-select: none;
}


#sign-in-wrapper {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#sign-in-title {
    margin-bottom: 2.25rem;
}

#sign-in-container {
    padding: 3.75rem 2.5rem;
    border-radius: 1rem;
    
    background-color: rgba(21, 23, 28, 0.85);
}

#inputs-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
}

input {
    width: 13rem;
    padding: 0.5625rem 0.75rem;
    
    color: white;
    
       
    border: 1px rgba(255, 255, 255, 0.65) solid;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
}

input[type="submit"] {
    margin: 1.25rem 0 0.75rem;
}

input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.05);
}


#sign-in-footer {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: white;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

#sign-in-footer-items-container {
    width: max-content;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.625rem;
}

#sign-in-footer-items-container a {
    color: rgb(0, 106, 230);
    text-decoration: none;
    cursor: pointer;
}

