@font-face {
    font-family: "gilroy";
    src: url(../fonts/Gilroy-Light.otf);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style: none;
    font-family: "gilroy";
}

:root {
    --primary: #CB5142;
    --secondary: #FDDC97;
    --black: #333333;
    --grey: #606163;
    --white: #f9f9f9;
}

::-webkit-scrollbar{
    display: none;
}


body {
    background-image: url(../images/bg-32.png);
    background-color: var(--white);
    background-size: cover;
    max-width: 1920px;
    max-height: 1080px;
}

.topbar {
    background-color: var(--primary);
    padding: 3px 0;
}

.topbar a {
    color: var(--white);
    font-weight: 300;
}
.bg-danger{
    background-color: var(--primary) !important;
}
nav a {
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey) !important;
    transition: all .3s;
}

nav a:hover {
    color: var(--primary) !important;
}

/* nav a.active {
    color: var(--primary) !important;
} */

.primary-button {
    padding: 8px 25px;
    background-color: var(--primary);
    color: var(--white) !important;
    border-radius: 40px;
    border: 1px solid var(--primary);
}

.secondary-button {
    padding: 8px 25px;
    background-color: transparent;
    color: var(--primary) !important;
    border-radius: 40px;
    border: 1px solid var(--primary);
}

small {
    padding: 5px 20px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 40px;
}

h1 {
    font-size: 50px;
    font-weight: 700;
    color: var(--black);
}

span {
    color: var(--primary);
}

p {
    color: var(--grey);
    letter-spacing: 1px;
}

.row div {
    padding: 10px;
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}
.icon{
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.icon i{
    color: var(--white);
}

.login{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
h3{
    font-weight: 700 !important;
}
.wrapper{
    height: 500px;
    position: relative;
    overflow: hidden;
}
.login-form, .register-form{
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 2s ease-in-out;
}

input[type="radio"]{
    accent-color: var(--primary);
}

.footer li{
    padding-top: 10px;
}
.footer a{
    color: var(--grey);
}
.footer a:hover{
    color: var(--primary);
}