* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Barlow';
    background-image: url("images/730292_custom_site_themes_id_bsaoNyyuSCSCu4xN8iV1_Banner 3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

}

form{
    font-family: 'Barlow';
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 50px 50px 50px;
    width: 400px;
    color: white;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 2);
    border-radius: 25px;
    backdrop-filter: blur(2.5px);
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));

}

p{
    color:red;
}

form img{

    width: 250px;
    margin-bottom: 5px;
    
}

.input-container{
        position: relative;
}

.input-container > i{
        font-family: 'Barlow';
        padding: 14px;
        border-radius: 50%;
        background-color: #5E1724;
        color: #fcfef7;
        position: absolute;
        font-size: 20px;
        top: 7px;
        right: 8px;
}

.input-container > input{
    font-family: 'Barlow';
    padding: 20px 50px 20px 15px;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 35px;
    background-color: transparent;
    border: 2px solid #5E1724;
    font-size: 16px;
    outline: none;
    color: #fcfef7;
}

::placeholder{

    color: white;
    font-size: 16px;

}
.btn{

    font-family: 'Barlow';
    background-color: #5E1724;
    padding: 14px 45px;
    border: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    color: white;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);


}
.btn:hover{
    background: linear-gradient(to right, #CE293C, #5E1724);
    color: white;
    transform: scale(1.05);
}

.register{
    text-decoration: none;
    color: #CE293C;
    padding: 5px 10px; 
    display: inline-block;
    margin: 0 5px;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.error{

    position: absolute;
    top: 50px;
    color: red;
    font-size: 20px;

}

@media(max-width:991px){

    body{
        padding: 30px;
    }

    form{
        width: 100%;
    }

}