body {
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    width: 25%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Poppins;
    margin: 0 auto;
    margin-top:5%;
}

@media (min-width: 768px) {
    .container {
        width: 40%;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 40%;
    }
}

.logo {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 15%;
    z-index: -50;
}
.logo-sebrae {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 10%;
    z-index: -50;
}
.title {
    margin-top: 64px;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    /* sky-500 */
}

.form {
    padding: 32px;
    font-weight: bold;
    background-color: #fff;
    /* sky-500 */
    border-radius: 1.5rem;
    margin-top: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 2px solid #fffbeb;
    /* amber-50 */
}

.input-group {
    width: 100%;
}

.input-group p {
    margin-bottom: 4px;
    color: #000;
}

.input {
    width: 98%;
    padding: 6px;
    font-size: 1.5rem;
    border-radius: 0.375rem;
    color: black;
    outline: none;
    border: 3px solid #194370;
}

input:focus {
    border: 3px solid #334155;
}

.submit-button {
    width: 100%;
    padding: 15px;
    margin-top: 8px;
    background-color: #194370;
    /* slate-600 */
    color: #fff;
    /* teal-50 */
    font-weight: bold;
    border-radius: 0.375rem;
    transition: opacity 0.3s ease;
    font-size: 2rem;
}

.submit-button:hover {
    opacity: 0.7
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-left: 4px solid #FF3D00;
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}