@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

@font-face {
    font-family: 'Reitam';
    src: url('local_fonts/Reitam-Regular.otf');
    font-weight: normal;
    font-style: normal;
}

body {
    overflow: hidden;
}

.interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% + 35px);
    height: calc(100% + 35px);
    position: absolute;
    top: -20px;
    left: -20px;
    background-image: url(../img/website/main-background.jpg);
    background-size: cover;
    color: white;
}

.filter {
    background-color: #232931;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#transitionner {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    width: 100%;
    height: 100%;
    background-color: #252525;
    transform: translateX(0%);
    transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.25s;
}

.primary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 40px;
    background-color: transparent;
    color: grey;
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    font-weight: bold;
    border: 2px solid grey;
    border-radius: 10px;
    outline: none;
    cursor: not-allowed;
    transition: 0.15s ease-in-out;
    z-index: 10;
    margin-bottom: 20px;
}

.primary-btn.clickable {
    background-color: #5f0101;
    border: 2px solid #5f0101;
    color: white;
    cursor: pointer;
}

#back-to-main {
    position: absolute;
    left: 25px;
    top: 25px;
    height: 40px;
    min-width: 55px;
    max-width: 55px;
    background-color: #8F0000;
    -webkit-clip-path: polygon(0 0, 72% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 72% 0%, 100% 100%, 0% 100%);
    cursor: pointer;
    transition: 0.3s ease-in-out;
    z-index: 10;
}

#back-to-main:hover {
    min-width: 240px;
    max-width: 240px;
    -webkit-clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
}

#back-to-main svg {
    margin-left: 15px;
    margin-top: 8px;
    width: fit-content;
    transition: 0.3s ease-in-out;
}

#back-to-main:hover svg {
    transform: rotate(-90deg);
}

#back-to-main p {
    color: white;
    display: inline-block;
    transform: translateY(-6px);
    font-family: 'Quicksand';
    margin-left: 30px;
}

.recover-pwd {
    z-index: 10;
    width: 80%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.recover-pwd::before {
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    bottom: 0;
    right: 0;
    background: inherit;
    box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.2);
    filter: blur(10px);
}

.recover-pwd h4 {
    text-align: center;
    font-family: 'Reitam';
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1.2px;
    margin-bottom: 40px;
}

.recover-pwd input {
    font-family: 'Quicksand';
    font-size: 15px;
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid white;
    color: white;
    outline: none;
    height: 38px;
    width: 65%;
    padding: 0 12px;
    z-index: 10;
    margin-bottom: 35px;
}

.recover-pwd.pwd input:nth-of-type(2) {
    margin-bottom: 0;
}

.recover-pwd input::placeholder {
    font-family: 'Quicksand';
    color: rgba(255, 255, 255, 0.6);
}

.recover-pwd p,
.recover-pwd a {
    font-family: 'Quicksand';
    text-align: center;
    width: 85%;
    margin-top: 0;
}

.recover-pwd a {
    text-decoration: underline;
    color: white;
    z-index: 10;
    cursor: pointer;
    margin-bottom: 20px;
}

.recover-pwd .reload {
    cursor: pointer;
    text-decoration: underline;
    z-index: 10;
}