@import url('./global.css');

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

.full-background {
    background: 
        url('../images/lines2.png') no-repeat center / cover,
        linear-gradient(135deg, var(--primary-clr) 0%, var(--secondary-clr) 100%);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}


.left-section img {
    width: 250px;
    max-width: 100%;
    padding-top: 50px;
}

.left-section h1 {
    font-size: var(--large-text-size);
    font-weight: bold;
    color: var(--white);
    line-height: normal;
    font-family: var(--font-fam-alt);
}

.left-section h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    font-family: var(--font-fam);
}

.left-section h3 {
    font-size: 1.5rem;
    color: var(--white);
    font-family: var(--font-fam);
}

.login-card {
    background-color: white;
    padding: 2rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 400px;
    height: 500px;
}

.login-title {
    padding-bottom: 10px;
}

.login-card h2 {
    font-size: var(--h2-size);
    font-weight: bold;
}

.login-card .button.is-primary {
    background: linear-gradient(to right, var(--secondary-clr), var(--primary-clr));
    border: none;
}

.login-button {
    font-family: var(--font-fam-alt6);
}

h2, h3 {
    line-height: 1;
}

.forgot-password {
    color: var(--active-blue);
}


@media (max-width: 768px) {
    .full-background {
        padding: 0 10px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .column.is-full-mobile.is-flex.is-align-items-stretch {
        padding-left: 25px;
        padding-right: 25px;
    }

    .left-section {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .left-section img {
        width: 120px;
        display: block;
        margin: 0 auto;
    }
    

    .left-section h1 {
        font-size: 2.5rem;
    }

    .left-section h2 {
        font-size: 1.7rem;
    }

    .left-section h3 {
        font-size: 1.2rem;
    }

    .login-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-top: 1.5rem;
    }

    .login-card h2 {
        font-size: 1.8rem;
    }

}
