@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
    margin: 0;
    height: 100vh;
    background: #09437a;
    color: white;
    font-family: "Poppins", sans-serif;
}

.body {
    width: 500px;
}

.card {
    display: flex;
    padding: 10px;
    flex-direction: column;
}

input {
    all: unset;
    border: 2px solid #dedede70;
    padding: 10px 20px;
    margin: 10px;
    width: 400px;
    color: white;
}

button {
    margin: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #fffff019;
}

@media(max-width: 768px) {
    input {
        width: 200px;
    }
}