body,
html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--secondary);
    color: var(--text-light);
}

main {
    display: flex;
    height: 100vh;
}

#leftSide {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-slider {
    width: 100%;
    position: relative;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    height: 1rem;
    width: 1rem;
    margin: 0 0.6rem;
    background-color: var(--text-light);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: var(--primary);
}

#rightSide {
    width: 50%;
    background-color: white;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.title {
    text-align: center;
    width: 60%;
}

#titleOne {
    font-size: 3.75rem;
    font-weight: bold;
    color: #000000;
    width: 100%;
    margin: 0;
    white-space: nowrap;
}

#titleTwo {
    font-size: 2.7rem;
    color: var(--text-dark);
    width: 100%;
    margin: 0;
    white-space: nowrap;
}

#loginForm {
    width: 60%;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input[type='text'],
.form-group input[type='password'],
.form-group input[type='email'] {
    font-size: 0.9rem;
    width: 100%;
    padding: 0.6rem;
    border-radius: 1rem;
}

.form-group button {
    font-size: 0.9rem;
    width: 100%;
    padding: 0.6rem;
    border-radius: 1rem;
}

.assist {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    vertical-align: middle;
    border-top: 0.1rem solid black;
    margin: 1.5rem 0.2rem 0 0.2rem;
    padding-top: 1rem;
}

.checkbox {
    display: flex;
    align-items: center;
    height: 100%;
    vertical-align: middle;
    cursor: pointer;
}

.checkbox label {
    font-size: 0.8rem;
    cursor: pointer;
    color: var(--text-medium);
}

.checkbox input[type='checkbox'] {
    accent-color: var(--primary);
    vertical-align: middle;
    cursor: pointer;
}

.forgot a {
    font-size: 0.8rem;
    height: 100%;
    vertical-align: middle;
    color: var(--text-medium);
    text-decoration: none;
}

.checkbox label:hover,
.forgot a:hover {
    font-weight: bold;
    text-decoration: underline;
    color: black;
}

.warning {
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 5px;
}

.warning.success {
    background-color: #dff0d8;
    color: #3c763d;
}

.warning.error {
    background-color: #f2dede;
    color: #a94442;
}

.logo-gps {
    width: 100%;
    text-align: center;
}

.logo-gps img {
    height: 2rem;
    width: auto;
}

@media (max-width: 768px) {
    main {
        flex-direction: column;
    }

    #leftSide, #rightSide {
        width: 100%;
        height: 50%;
    }

    .title {
        width: 80%;
    }

    #loginForm {
        width: 50%;
    }

    .form-group input[type='text'],
    .form-group input[type='password'],
    .form-group button {
        font-size: 1.5rem;
    }

    .checkbox label, .forgot a {
        font-size: 1.2rem;
    }
}