@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;800&display=swap");

:root {
    --red: #cf2030;
    --white: #ffffff;
    --black: #000000;
    --lightgray: #f2f2f2;
    --gray: #d9d9d9;
    --darkgray: #65696e;
}

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

html {
    height: 100%;
    width: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background-image: url(../images/background.png);
    background-size: cover;
    height: 100%;
    background-attachment: fixed;
}

a,
a:hover {
    text-decoration: none;
}

.container {
    position: relative;
    height: 100%;
}

.login-button {
    background: none;
    border: none;
    outline: none;
    padding: 10px 30px;
    text-align: center;
    transition: 0.5s;
    color: white;
    /* text-shadow: 0px 0px 10px rgba(0,0,0,0.2); */
    border-radius: 50px;
    background: linear-gradient(180deg, #5f5f5f 0%, #000 100%);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.top-content {
    position: relative;
    text-align: center;
    top: 5%;
}

.login-logo {
    width: 260px;
}

.form-box {
    width: 550px;
    margin: 0 auto;
    display: flex;
    margin-top: 40px;
}

/* form {
    position: relative;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.form-control {
    background-color: var(--lightgray);
}

.form-select {
    background-color: var(--gray);
}

.form-control:focus {
    border-color: var(--gray);
    background-color: var(--lightgray);
    box-shadow: 0 0 0 0.2rem rgba(130, 133, 130, 0.25);
}

.form-select:focus {
    border-color: var(--gray);
    background-color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(156, 159, 156, 0.25);
}

.no-border {
    border: 0;
    box-shadow: none; /* You may want to include this as bootstrap applies these styles too */
}

.footer-credit {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--black);
}

.prize-logo {
    width: 300px;
    margin-top: -25px;
}

@media (max-width: 768px) {
    .form-box {
        width: 450px;
        margin-top: 20px;
    }
}

@media (max-width: 685px) {
    .top-content {
        top: 10%;
    }

    .login-logo {
        width: 200px;
    }

    .form-box {
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .form-box {
        width: 400px;
    }
}

@media (max-width: 450px) {
    body {
        background-image: url(../images/small-background.png);
        background-size: cover;
    }

    .footer-credit {
        color: var(--white);
    }

    .form-box {
        width: 370px;
    }

    .login-logo {
        width: 200px;
    }

    .image-box img {
        width: 280px;
    }
}

@media (max-width: 400px) {
    .form-box {
        width: 340px;
    }
}

@media (max-width: 360px) {
    .form-box {
        width: 320px;
    }
}

@media (max-width: 320px) {
    .form-box {
        width: 270px;
    }
}
