@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,500;1,900&display=swap');

:root {
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #ca1c1c;
    --secondary-color: rgb(10, 45, 70);
    --light-blue: #5d7299;
    --dark-gray: #3e3e3e;

    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 500px;

    --site-max-width: 1300px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(imgs/eagle-with-shield-thunderstorm-expanded.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper{
    width: 420px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: var(--white-color);
    border-radius: 10px;
    padding: 30px 40px;
}

.wrapper .top-row {
    display: flex;
    align-items: center;
    gap: 85px;
}

.wrapper .top-row-sign-up {
    display: flex;
    align-items: center;
    gap: 70px;
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
    margin: 0;
}

.wrapper #return-home{
    font-size: var(--font-size-n);
    color: var(--white-color);
    text-align: center;
    text-decoration: none;
    margin: 0;
}

.wrapper .error-message {
    text-align: center;
    padding-bottom: 30px;
    color: red;
}

.wrapper .return-home{
    font-size: 36px;
    text-align: left;
    margin: 0;
    color: var(--white-color);
}


.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 2555, .2);
    border-radius: 40px;
    font-size: 16px;
    color: var(--white-color);
    padding: 20px 75px 20px 20px;
}

.input-box .fa-eye-slash{
    right: 50px;
    cursor: pointer;
}

.input-box .fa-eye{
    right: 50px;
    cursor: pointer;
}

.input-box input::placeholder{
    color: var(--white-color);
}

.input-box i {
    position: absolute;   
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.wrapper .remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.remember-forgot label input {
    accent-color: var(--white-color);
    margin-right: 3px;
}

.remember-forgot a {
    color: var(--white-color);
    text-decoration: none;
}

.remember-forgot a:hover{
    text-decoration: underline;
}

.wrapper .btn{
    width: 100%;
    height: 45px;
    background: var(--white-color);
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
     font-weight: var(--font-weight-semibold);
}

.wrapper .register-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

.register-link p a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
}

.register-link p a:hover{
    text-decoration: underline;
}


/* Responsive media query code for max width 1024px*/
@media screen and (max-width: 1920px) {
    body{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background: url(imgs/eagle-with-shield-thunderstorm.png) no-repeat;
        background-size: cover;
        background-position: center;
    }
}