* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-size: 18px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
}

main {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(15, 23, 42);
}

.gap-32 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.gap-24 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.login-svg-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background-image: linear-gradient(to right top, rgb(124, 58, 237), rgb(99, 102, 241), rgb(59, 130, 246));
}

.login-svg-container svg {
    width: 48px;
    height: 48px;
    fill: white;
}
.bem-vindo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bem-vindo h1 {
    font-size: 32px;
    font-weight: 700;
}

.bem-vindo p {
    font-size: 18px;
    color: rgb(148, 163, 184);
}

.formData {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
}

.input-field {
    padding: 20px 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border: 1px solid rgba(51, 65, 85, 0.8);
    background-color: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
}

.icon-gray > *{
	color: rgb(100, 116, 139) !important;
}

.input-campo {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    color: rgb(100, 116, 139);
    font-size: 16px;
}

.input-campo::placeholder {
    color: rgb(100, 116, 139);
    font-size: 16px;
}

.login {
    width: 100%;
    max-width: 500px
}

.forgot-pass {
    font-size: 14px;
    color: rgb(129, 140, 248);
    line-height: 200%;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-pass:hover {
    color: rgb(174, 182, 255);
}

.btn-login {
    width: 100%;
    padding: 18px;
    background-image: linear-gradient(to right, rgb(124, 58, 237), rgb(99, 102, 241), rgb(59, 130, 246));
    cursor: pointer;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-login:hover {
    transform: translateY(-2px);
}

.lines {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(100, 116, 139, 1);
    font-size: 14px;
}

.line {
    height: 1px;
    width: 100%;
    background-color: rgba(100, 116, 139, 0.4);
}

.version {
    font-size: 12px;
    color: rgb(100, 116, 139);
}

.create-account-popup, .password-reminder-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.popup-create, .popup-pass {
    max-width: 450px;
    width: 100%;
    padding: 32px;
    border: 1.5px solid rgba(100, 116, 139, 0.4);
    border-radius: 24px;
    background-color: rgb(15, 23, 42);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}

#createForm .inputs {
    gap: 20px;
}

#createForm {
    gap: 32px;
}

.btn {
    width: 100%;
    padding: 18px;
    background-image: linear-gradient(to right, rgb(124, 58, 237), rgb(99, 102, 241), rgb(59, 130, 246));
    cursor: pointer;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn:hover {
    transform: translateY(-2px);
}

.gap-16 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.popup-footer {
    font-size: 12px;
    color: rgb(100, 116, 139);
}


.title-close {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.title-close h2 {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
}

.close-popup, .close-popup-pass {
    cursor: pointer;
    font-size: 32px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: rgb(100, 116, 139);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: rgba(30, 41, 59, 0.5);
    transition: background-color 0.3s ease, color 0.3s ease;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.close-popup:hover, .close-popup-pass:hover {
    background-color: rgba(47, 56, 70, 0.5);
    color: white;
}

.forgot-pass {
    cursor: pointer;
}

.rec-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}

.rec-info p {
    color: rgb(148, 163, 184);
    font-size: 14px;
    line-height: 150%;
}

.display-none {
    display: none !important;
}

#toggle-login-password {
    cursor: pointer;
    width: 24px;
    height: 24px;
}

#toggle-login-password > * {
    transition: color 0.2s ease;
}

#toggle-login-password:hover > *{
    color: white !important;
}


