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

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

.container {
    min-height: 100vh;
    background: #031540;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container form {
    width: 670px;
    height: 300px;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.container form h1 {
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}

.container form h4 {
    color: #fff;
    font-weight: 300;
    margin-top: 20px;
    text-align: center;
}

.container form .center-text {
    text-align: center;
}

.container form input[type="button"] {
    border: none;
    background: none;
    margin-top: 30px;
    font-weight: 600;
    font-size: 18px; 
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 1px solid #fff;
    width: 130px;
}

.container form input[type="button"]:hover {
    opacity: 0.7;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #00abf0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100; 
 }
 
 .logo {
     font-size: 25px;
     color: #031540;
     text-decoration: none;
     font-weight: 700;
 }
