@import url('https://fonts.googleapis.com/css2?family=Emblema+One&family=Great+Vibes&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(130deg, rgb(52, 116, 253), rgb(199, 7, 199));
    height: 100vh;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;
    
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
}

.content .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.content .heading h1 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: #333;
    font-size: 40px;
    font-family: "Emblema One", system-ui;
    font-weight: 400;
    text-align: center;
}

.content .heading p {
    margin-bottom: 20px;
    width: 85%;
    color: #333;
    font-size: 16px;
    font-family: "Jost", system-ui;
    font-weight: 300;
    justify-content: center;
    text-align: center;
}

.content .form form {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.content .form form input {
    margin-bottom: 20px;
    margin-right: 5%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    font-family: "Jost", system-ui;
    font-weight: 300;
}

.content form button {
    padding: 15px;
    width: 40%;
    height: 100%;
    border: none;
    border-radius: 10px;
    background-color: #006eff;
    color: #fff;
    font-size: 16px;
    font-family: "Jost", system-ui;
    font-weight: 300;
    cursor: pointer;
}

.content form button:hover {
    background-color: #0056d6;
}

.footer {
    /* margin-top: 20px; */
    color: #fff;
    font-size: 16px;
    font-family: "Jost", system-ui;
    font-weight: 300;
    text-align: center;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}