@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');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bg_login2.jpg'); /* Ensure the path to the image is correct */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image within the container */
    background-repeat: no-repeat; /* Prevents repeating the background image */
}

.login-wrapper{
    display: flex;
    flex-direction: column;
    width: 400px;
    border-radius: 10px;
    border: solid 1px rgba(255, 255, 255, 0.637);
    padding: 100px 40px;
    background: #07092c72;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    backdrop-filter: blur(10px);
}

.input{
    display: flex;
    flex-direction: column;
    height: 80px;
    margin: 10px 0;
    color: white;
}

input{
    width: 100%;
    height: 50px;
    border: solid 1px #ccc;
    border-radius: 10px;
    padding: 0 10px;
    text-align: center;
    margin: 5px 0;
    font-size: 1em;
    background: transparent;
    color: white;
}

input:focus{
    border: solid 1px white;
    outline: none;
}

input[type="submit"]{
    width: 100%;
    height: 50px;
    border: solid 1px #ccc;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1.2em;
    font-weight: 500;
    padding: 10px;
    background: white;
    color: black;
    cursor: pointer;
}

.image-text {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 40px;
}
.image img{
    width: 130px;
}

.header-text {
    display: flex;
    font-size: 0.9em;
    font-weight: 300;
    color: #aeaeae;
}

.error{
    display: flex;
    padding: 20px;
    border-radius: 10px;
    background: #fa9292;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}

.notice{
    display: flex;
    /* width: calc(100% - 40px); */
    padding: 20px;
    border-radius: 10px;
    background: #7cbbff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}

.name{
    font-size: 1.8em;
    color: white;
    font-weight: 400;
}

.img2{
    display: flex;
    font-size: 2.3em;
    color: white;
    font-weight: 500;
    letter-spacing: -2px;
    padding: 0px 13px;
    margin: 0 5px;
    border-radius: 10px;
    /* background: green; */
    background: rgb(32,126,25);
    background: linear-gradient(29deg, rgba(32,126,25,1) 0%, rgba(62,151,56,1) 51%); 
}
.forgot a{
    display: flex;
    justify-content: center;
    color: rgb(222, 222, 222);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}

.forgot a:hover{
    color: white;
}

.footer{
    position: absolute;
    bottom: 10px;
    color: white;
    font-size: 0.8em;
}
