* {
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #274370;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* FUNDO */
.login-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
}

.circle-white {
    width: 320px;
    height: 320px;
    background: #ffffff;
    bottom: -80px;
    left: -120px;
}

.circle-green {
    width: 500px;
    height: 500px;
    background: #5ec7a1;
    bottom: -150px;
    right: -150px;
}

/* CONTAINER */
.login-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    padding: 40px 32px 48px;
}

.logo {
    text-align: center;
    margin-bottom: 24px;
}

.logo img {
    width: 260px;
    max-width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.input-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ffffff;
}

.input-group i {
    color: #ffffff;
    font-size: 20px;
    margin-right: 12px;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 16px;
    padding: 10px 0;
}

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

.toggle-password {
    cursor: pointer;
    margin-left: 12px;
}

.login-button {
    margin-top: 16px;
    height: 48px;
    width: 70%;
    align-self: center;
    background: #ffffff;
    color: #000000;
    border-radius: 30px;
    border: 2px solid #5ec7a1;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.login-button:hover {
    opacity: 0.95;
}

.error {
    color: #ffdede;
    font-size: 14px;
    text-align: center;
}

/* RESPONSIVO */
@media (min-width: 768px) {
    .login-wrapper {
        max-width: 480px;
    }
}

@media (min-width: 1200px) {
    body {
        justify-content: flex-start;
    }

    .login-wrapper {
        margin-left: 10%;
    }
}