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;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-18 {
    font-size: 1.125rem;
}

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

#sign-up-title,
#sign-up-subtitle,
label,
.input-description {
    user-select: none;
}


#sign-up-title {
    margin-bottom: 0.25rem;
}

#sign-up-subtitle {
    margin-bottom: 1.25rem;
}

form *:not(input) {
    font-size: 0.875rem;
    color: #b5b7c8;
}

.error-container {
    margin-top: 0.5rem;
    padding: 0.125rem 0.375rem;
    
    font-size: 0.75rem;
    color: rgb(227, 41, 84);
    background-color: rgba(227, 41, 84, 0.2);
    border: none;
    border-radius: 0.25rem;
    
    overflow: hidden;
    white-space: wrap;
}

#sign-up-container {
    padding: 3.75rem 2.5rem;
    border-radius: 1rem;

    background-color: rgba(21, 23, 28, 0.85);
}

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

label {
    margin-bottom: 0.125rem;
}

input {
    display: block;
    width: 100%;
    padding: 0.5625rem 0.75rem;
    font-size: 1rem;
    color: white;


    border: 1px rgba(255, 255, 255, 0.65) solid;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    appearance: none;
}

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

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


#sign-up-footer {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
}

#sign-up-footer-items-container {
    width: max-content;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.625rem;
}

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