@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:ital,wght@0,100..900;1,100..900&family=Titan+One&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #74b4d9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Ubuntu", sans-serif;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.div-container form{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   background-color: #ffffff6f;
   backdrop-filter: blur(10px);
   padding: 50px;
   margin-top: 50px;
   border-radius: 10px;
}

input{
    width: 100%;
    height: 100%;
    margin: 10px;
    padding: 10px;
    outline: 0;
    border: 0;
    background-color: #f0f0f0;
    border-radius: 10px;
}

button{
    background-color: #10367d;
    color: #fff;
    padding: 10px;
    border: 0;
    border-radius: 10px;
}

p{
    margin-top: 10px;
    a{
        text-decoration: 0;
        color: #10367d;
    }
}

.alert alert-success alert-dismissible fade show{
    display: flex;
    justify-content: end;
}


@media(max-width: 800px){
    body{
       
        background-position: center;
        background-size: cover;
        height: 100vh;
    }

    .div-container form{
        backdrop-filter: blur(10px);
        background-color: #ffffff61;
        border-radius: 10px;
    }

   
}


.alert {
    position: fixed; 
    top: 20px;       
    left: 50%;       
    transform: translateX(-50%); 
    z-index: 9999;   
    width: 90%;     
    max-width: 500px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
}


.alert {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { top: -100px; opacity: 0; }
    to { top: 20px; opacity: 1; }
}


