body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
}

.container {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    flex: 1;
    background: linear-gradient(135deg,
            #2d1541 0%,
            /* preto dominante superior esquerda */
            #311531 25%,
            /* rosa dominante superior direita */
            #000000 60%,
            /* cor mista inferior esquerda */
            #40117c 100%
            /* roxo inferior direita */
        );
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-start;
}

header {
    padding: 24px 32px 0 32px;
}

.logo {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.image-bg {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.woman-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: left;
    transform: translateY(-50%);
    z-index: 2;
    padding-left: 48px;
}

.banner-text h1 {
    color: #fff;
    font-size: 2.7rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 2px 12px #000a;
}

.right-panel {
    flex: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 16px;
    box-shadow: none;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-box h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
    color: #181818;
}

.subtitle {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 24px;
    text-align: center;
}

.link {
    color: #2a4be7;
    text-decoration: none;
    font-weight: 500;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
}

.input-fake {
    width: 100%;
    height: 54px;
    border-radius: 18px;
    background: #e0e0e0;
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    padding-left: 16px;
    box-sizing: border-box;
    user-select: none;
}

.box-fake-interactive {
    text-decoration: none;
}

.box-fake-interactive {
    width: 100%;
    height: 54px;
    border-radius: 18px;
    background: #181818;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    cursor: pointer;
    transition: background 0.2s;

}



.box-fake-interactive:hover {
    background:#280e57;
}

.login-btn {
    width: 100%;
    padding: 18px 0;
    background: #181818;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 18px;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.login-btn:hover {
    background: #2a4be7;
}

.divider {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 24px 0 18px 0;
}

.divider span {
    margin: 0 16px;
    color: #181818;
    font-size: 1.1rem;
    font-weight: 500;
}

.divider:before,
.divider:after {
    content: "";
    flex: 1;
    height: 2px;
    background: #e0e0e0;
}

.social-login {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.social-btn {
    width: 100%;
    padding: 16px 0;
    background: #fff;
    color: #181818;
    font-size: 1.2rem;
    font-weight: 500;
    border: 2px solid #e0e0e0;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: border 0.2s, background 0.2s;
}

.social-btn .icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    background: none;
    margin-left: 18px;
}

.social-btn.google:hover {
    border-color: #ea4335;
    background: #f8f8f8;
}

.social-btn.facebook:hover {
    border-color: #1877f3;
    background: #f8f8f8;
}

.social-btn.microsoft:hover {
    border-color: #fbbc05;
    background: #f8f8f8;
}