body {
    font-family: 'Poppins', sans-serif;
    /* Location of the image */
    background-image: url("https://www.aurecongroup.com/-/media/images/aurecon/content/about/awards/2018-industry-awards/projects/sol-plaatje-university-library/gallery/view-from-afar.jpg");
    height: 100%;

    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;
    /* Background image doesn’t tile */
    background-repeat: no-repeat;
    /* Background image is fixed in the viewport so that it doesn’t move when the content’s height is greater than the image’s height */
    background-attachment: fixed;
    /* This is what makes the background image rescale based on the container’s size */
    background-size: cover;
    /* Set a background color that will be displayed while the background image is loading */
    background-color: #fff;
}

/* SPU Tutor Request Portal */
body>div>div>h1:nth-child(1) {
    text-align: center;
    font-weight: 450;
    margin: 0 auto 40px;
    border-bottom: none !important;
}

/* Greeting */
body>div>div>h1:nth-child(2) {
    font-weight: 300;
    border-bottom: none !important;
}

/* Transparent background not affecting its children elements */

.form-wrapper {
    max-width: 500px;
    height: 100%;
    margin: 80px auto 0;
    box-shadow: 0 0 5px rgb(65 67 144 / 15%);
    padding: 50px;
    display: block;
    position: relative;
}

.form-wrapper::after {
    content: "";
    background: #000;
    opacity: 0.4;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

/* End transparent background not affecting its children elements */

.logo {
    text-align: center;
    margin: 0 auto 20px;
}

.logo img {
    width: 100px;
    margin: auto;
}

h1 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 450;
    border-bottom: 1px solid #dee2ef;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

p {
    color: #ffffff;
    font-weight: 450;
    border-bottom: 1px solid #dee2ef;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

form {
    display: block;
    margin-top: 0em;
}

/* Upload file */

body>div>div>div.login-signup>span,
#myFile {
    color: #fff;
}

/* Social logins */
body>div>div>div>ul {
    padding-inline-start: 0% !important;
    /* display: inline-block !important; */
    text-align: center !important;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

body>div>div>div>ul>li>a {
    box-sizing: border-box;
    margin: 0;
    line-height: inherit;
    padding: 10px 13px;
    margin-bottom: 15px;
    width: -webkit-fill-available;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    outline-color: transparent;
    outline-style: none;
    -webkit-appearance: button;
    background: #007bff;
    color: white;
    border-radius: 2px;
    margin-top: 15px;
    font-weight: 400;
    border: 1px solid #007bff;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

body>div>div>form>button {
    box-sizing: border-box;
    margin: 0;
    line-height: inherit;
    padding: 10px 13px;
    margin-bottom: 15px;
    width: -webkit-fill-available;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    outline-color: transparent;
    outline-style: none;
    -webkit-appearance: button;
    background: #ffab1f;
    color: white;
    border-radius: 2px;
    margin-top: 15px;
    font-weight: 400;
    border: 1px solid #ffab1f;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

body>div>div>div>ul>li>a:hover,
button:hover {
    opacity: 1;
    color: #fff;
    background: #000000;
}

/* End Social logins */

/* Error */
.errorlist,
.nonfield {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    transition: opacity .15s linear;
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    padding-right: 3rem;
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

body>div>div>form>ul {
    text-align: left;
    box-sizing: border-box;
    margin-top: 0;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    max-width: 400px;
}

body>div>div>form>ul>li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-box-direction: normal;
    box-sizing: border-box;
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

/* End Error */

label {
    font-size: 0.9em;
    color: white;
    margin-bottom: 5px;
    display: block;
    font-weight: 450;
}

input {
    padding: 10px 13px;
    margin-bottom: 15px;
    width: -webkit-fill-available;
    border-radius: 2px;
    border: 1px solid #d4d9e3;
    font-weight: 450;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease-out;
    font-size: 0.9em;
    outline-color: transparent;
    outline-style: none;
}

fieldset {
    color: #fff;
}

/* datalist {
    border: none;
    padding: 0;
    margin: 0;
} */

.btn-submit {
    background: #ffab1f;
    color: white;
    border-radius: 2px;
    margin-top: 15px;
    font-weight: 400;
    border: 1px solid #ffab1f;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.btn-submit:hover {
    opacity: 1;
    color: #fff;
    background: #000000;
}

.log-out {
    text-align: center;
    font-weight: 450;
    font-size: 0.8em;
    margin-top: 20px;
}

.log-out a {
    color: #5eb9d7;
    font-weight: 500;
}