@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

nav {
    height: 80px;
    background: #fdcc04;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem calc((100vw - 1300px) / 2);
}
  
.logo {
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    padding: 0 2rem;
}
  
nav a {
    text-decoration: none;
    color: #000;
    padding: 0 1.5rem;
}
  
nav a:hover {
    color: #fff;
}

body {
    display: flex;
    min-height: 90vh;
    background: url('shake.jpg') no-repeat; /* background image*/ 
    background-size: cover;
    background-position: center;
}

.wrapper {
    margin-top: 250px;
    margin-left: -1000px;
    align-items: center;
    justify-content: center;
    background: transparent;  /* transparency */ 
    border: 2px solid rgba(255, 255, 255, .2); /* transparency */ 
    backdrop-filter: blur(10px); /* transparency */ 
    box-shadow: 0 0 10px rgba(0, 0, 0, .2); /* transparency */ 
    width: 420px;
    height: 450px;
    color: black;  
    border-radius:10px;  
    padding: 30px 40px;
}

.wrapper h1 {
    font-size: 36px;
    text-align: center; 
    color: #fdcc04;   
}

.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 black;
    border-radius: 20px;
    color: black;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: darkgrey;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.wrapper .remember-forgot {
    justify-content: center;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.wrapper .btn {
    width: 100%;
    height: 45px;
    background: black;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px #fdcc04;
    font-size:16px;
    text-align:center;
    color: white;
    font-weight: 600;
}

.btn:hover {
    opacity: 80%;
    cursor: pointer;
    background-color: springgreen;
    box-shadow: 0 0 10px yellowgreen;
    color:black;
  }

.remember-forgot label input {
    accent-color: rgb(50, 77, 50);
    margin-right: 3px;
}

.remember-forgot a {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.wrapper .register-link {
    font-size: 14.5px;
    text-align:center;
    margin: 20px 0 15px;
}

.register-link p a {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover {
    text-decoration: underline;
}

.wrapper2 {
    margin-top: 150px;
    margin-left: -1100px;
    background: transparent;  /* transparency */ 
    border: 2px solid rgba(255, 255, 255, .2); /* transparency */ 
    backdrop-filter: blur(10px); /* transparency */ 
    box-shadow: 0 0 10px rgba(0, 0, 0, .2); /* transparency */ 
    width: 700px;
    height: 700px;
    color: black;  
    border-radius:5px;  
    padding: 30px 40px;
}

.wrapper2 h1 {
    font-size: 36px;
    text-align: center; 
    color: #fdcc04;   
}

.wrapper2 .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.wrapper2 .input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid black;
    border-radius: 5px;
    color: black;
    padding: 20px 45px 20px 20px;
}

.wrapper2 .register-link {
    font-size: 14.5px;
    text-align:center;
    margin: 20px 0 15px;
}

.wrapper2 .btn {
    width: 100%;
    height: 45px;
    background: #fdcc04;
    border: none;
    outline: none;
    border-radius: 10px;
    box-shadow: 0 0 10px #fdcc04;
    font-size:16px;
    text-align:center;
    color: black;
    font-weight: 600;
}