* {
    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: url('../images/slider-1.jpg');
    background-size: cover;
    background-position: center;
}

.wrapper {
    width: 420px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    min-height: 550px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 25px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid white;
    outline: none;
    border-radius: 45px;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    font-size: 16px;
    color: white;
    padding: 20px 45px 20px 20px;
    margin-top: 40px;
}

.input-box input::placeholder {
    color: #fff;
}

.input-box i {
    position: absolute;
    right: 0px;
    top: 30%;
    transform: translate(-50%);
    font-size: 20px;
    margin-top: 40px;
}

.alert {
    background: rgba(255, 0, 0, 0.1);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.wrapper .btn {
    width: 100%;
    height: 50px;
    background: white;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgb(249, 249, 249);
    cursor: pointer;
    font-size: 20px;
    color: rgb(253, 185, 59);
    margin-top: 80px;
}

.wrapper .register-link {
    font-size: 14.5px;
    text-align: center;
    margin-top: 40px;
}

.register-link p {
    color: rgb(255, 255, 255);
}

.register-link p a {
    color: rgb(253, 185, 59);
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover {
    text-decoration: underline;
}

.copyright {
    position: fixed;
    bottom: 20px;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 14px;
}
