* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-image: url(../../assets/carousel-image-4.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    
}
.form-box form{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.loginContainer{
    height: 65%;
    width: 25%;
    backdrop-filter: blur(10px);
    background: #ffffff4e;
    border: 1px solid #0000004e;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login{
    width: 100%;
    color: white;
}

.login h1{
    font-size: 36px;
    text-align: center;
}

.login .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0px;
}

.login .input-box input{
    color: white;
    width: 100%;
    height: 100%;
    font-size: 14px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
}

.login form a{
    text-align: center;
    color: white;
}
.login p{
    color: white;
    text-align: center;

}

.input-box input::placeholder{
    color: white;
    font-size: 14px;
}

.input-box i{
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    font-size: 22px;
    right: 3%;
}

.forgotpass{
    width: 100%;
    display: inline-block;
    align-items: center;
    color: white;
    border: none;
    text-decoration: underline;
    font-size: 15px;
    background: transparent;
    outline: none;
    text-align: center;
}

.loginButton{
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 20px;
    color: white;
    margin: 25px 0px;
    width: 100%;
    border-radius: 40px;
    height: 50px;
    transition-duration: .2s;
    background: #b0b0b055;
}

.loginButton:hover{
    background: #ffffff48;

}

@media (max-width: 1024px) {
    .loginContainer {
        width: 50%;
    }

    .login h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .loginContainer {
        width: 50%;
    }
}

@media (max-width: 615px) {
    .loginContainer {
        width: 90%;
    }
    
    .login h1 {
        font-size: 24px;
    }
}

