/* Font Import */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("../images/loginbg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #f0f0f0;
    margin: 0;
}

.wrapper {
    width: 420px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* For Safari */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    color: #333;
    padding: 30px 40px;
}

.wrapper h1 {
    font-size: 50px;
    text-align: center;
}

.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box input {
    width: 100%;
    height: 45px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: black;
    padding: 10px 20px;
    box-sizing: border-box;
}

.input-box input::placeholder {
    color: #0B0B0B;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
}

.toggle-password .bx {
    font-size: 20px;
}

.input-box input:focus, 
.btn:focus {
    border-color: #4361ee;
    box-shadow: 0 0 5px #4361ee;
    outline: none;
}

.remember-forget {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin-bottom: 15px;
}

.remember-forget label input {
    margin-right: 3px;
}

.remember-forget a {
    color: #666;
    text-decoration: none;
}

.remember-forget a:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    height: 45px;
    background: #2168C3;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Change button color on hover */
.btn:hover {
    background: #F01215; /* Change to desired hover color */
}

.register-link {
    font-size: 14.5px;
    text-align: center;
    margin-top: 15px;
}

.register-link p a {
    color: #4361ee;
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover {
    text-decoration: underline;
}
