html {
    scrollbar-color: var(--cor-cinza-3) transparent;
    scrollbar-width: thin;
}

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

body {
    background: linear-gradient(145deg, black,#152242);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    justify-content: space-between;
    background: transparent;
    border-radius: 10px;
    padding: 20px;
    max-width: 820px;
    color: #fff;
    border: 1px solid #004aad;
    display: flex;
    position: relative;
    align-items: center;
}

.left {
    padding: 10px;
}

.left img {
    object-fit: cover;
    width: 200px;
    height: 100%;
}

.right {
    padding: 10px;
}

h2 {
    text-align: center;
    margin-bottom: 15px;
}

label {
    margin: 14px;
    font-size: 13px;
}

input {
    width: 100%;
    margin: 2px;
    padding: 8px 20px;
    margin-bottom: 15px;
    border: 2px solid #004aad;
    font-size: 12px;
    border-radius: 15px;
    background: transparent;
    color: white;
    outline: none;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.row {
    display: flex;
    gap: 10px;
}

button {
    width: 100%;
    padding: 5px 12px;
    background: #004aad;
    border: 2px solid #004aad;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 10px;
    font-size: 13px;
}

button:hover {
    background: #012758;
    color: white;
    transform: scale(1.01);
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: red;
    font-size: 24px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover {
    transform: scale(1.2);
}

.footer-logo {
    text-align: center;
    margin-top: 10px;
}

@media(max-width:500px) {
    .container {
        padding: 5px;
        margin: 15px;
    }

    .left {
        display: none;

        img {
            display: none;
        }
    }

    .right {
        label {
            font-size: 12px;
        }

        input {
            padding: 7px 14px;
            font-size: 10px;
        }
    }
}