@import "../../styles/leadpages_global.css";

/* Layout styles */
.login-root {
    display: flex;
    gap: 20px;
}

.left-container {
    min-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-top: 20vh;
}

.right-container {
    min-width: 55%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.right-container img {
    max-width: 100%;
    max-height: 90vh;
}

@media screen and (max-width: 768px) {
    .login-root {
        flex-wrap: wrap;
        justify-content: center;
    }

    .left-container,
    .right-container {
        max-width: 50%;
        margin-top: 20px !important;
    }
}

/* Text styles */
.login-title {
    line-height: 1.2;
    padding-right: 10px;
    font-family: Value Serif;
}

/* Button styles */
.sign-up-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.alert {
    min-width: 300px;
}

/* The wordpress/icons package does not contained an outlined warning 
 * icon quite like the one used in app. An upside down info icon is the 
 * closest match we have. Apply this class to rotate the icon 180 degrees */
.rotate-180 {
    transform: rotate(180deg);
}
