@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:"Outfit", Verdana, Geneva, Tahoma, sans-serif;
}
body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111729;
}
.containerMain {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
}
.backgroundImg {
    position:fixed;
    left: 55%;
    top: 15%;
    transform: translate(-15%, 0%);
}
.container-form {
    position: relative;
}
.container-form input {
    width: 500px;
    height: 60px;
    background-color: #030617;
    color: #354153;
    font-weight: 600;
    border: 2px solid #3662E3;
    border-radius: 15px;
    outline: none;
    padding: 10px 20px;
    padding-right: 130px;
}
.container-form input::placeholder {
    color: #354153;
    font-weight: 600;
}
.container-form button {
    position: absolute;
    width: 120px;
    height: 50px;
    right: 5px;
    top: 5px;
    background-color: #3662E3;
    color: #F2F5F9;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
}
.container-form button:hover {
    box-shadow: 0 0 10px #3662E3;
    text-shadow: 0 0 10px #F2F5F9;
}
@media (max-width: 500px){
    .container-form input {
        width: 100%;
    }
}
/** QRCODE PAGE **/
.logoTop {
    position: fixed;
    top: 30px;
    left: 50px;
}
.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #3661e35f;
    display: flex;
    justify-content: center;
    align-items: center;
}
.QRContainer {
    width: 250px;
    height: 250px;
    background-color: #F2F5F9;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.QR {
    width: 200px;
    height: 200px;
    display: flex;
}
.container-btns {
    display: flex;
    gap: 30px;
}
.container-btns button {
    width: 150px;
    height: 50px;
    border: none;
    border-radius: 10px;
    color: #F2F5F9;
    background-color: #3662E3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.container-btns button:hover {
    box-shadow: 0 0 10px #3662E3;
}
.container-btns button img {
    width: 15px;
    height: auto;
}