@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');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../img/zdj.jpg');
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.5); 
    background-repeat: no-repeat;
    background-size: cover;
    color: black;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    height: fit-content; 
    max-width: 35%;
    padding: 30px 40px;
    background-color: white;
    box-shadow: 1px 0px 19px 0px rgba(255, 255, 255, 1);
    border-radius: 15px 15px;
    text-align: center;
}

.container h1{
    font-size: 50px;
    margin-bottom: -5px;
}

.container p{
    font-size: 20px;
}

.container input{
    width: 90%;
    height: 2rem;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 30px 30px;
    outline: 0;
    border: 1px white solid;
    background-color: lightgray;
    padding: 15px;
    font-size: 20px;
}

.container button{
    width: 95%;
    height: 4rem;
    margin-top: 10px;
    border-radius: 30px 30px;
    border: 1px white solid;
    background-color: black;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

button:hover{
    background-color: rgb(12, 12, 12);
}
