@import url(/styles/shared/home-header.css);
@import url(/styles/shared/home-footer.css);

* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#login-button {
    background-color: white !important;
    color: #1777c0 !important;
}

#background-image {
    height: 100vh;
    position: fixed;
    top: 0;
    left: -120px;
    z-index: -2;
}

#login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#signup-button:hover {
    background-color: #fff3 !important;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    width: 90%;
    border-radius: 2rem;
}

.section-title {
    font: bold 1rem Helvetica;
    color: #2ca3ff;
    text-align: center;
    margin-block: 1.2rem;
}

.section-input-1 {
    appearance: none;
    outline: none;
    border: 1px solid #64b2ed;
    padding-inline: 10px;
    height: 3rem;
    border-radius: 4rem;
    width: 90%;
    font-size: 1rem;
    padding-left: 1.4rem;
    margin-block: .4rem;
}

.section-discrete-text {
    font: normal 0.8rem Helvetica;
    color: #2ca3ff;
    margin-top: 4px;
}

.accept-button {
    border-radius: 4rem;
    font: normal 16px Helvetica;
    padding: 14px;
    width: 90%;
    border: 1px solid #00c66d;
    background-color: #00c66d;
    color: white;
    transition: .3s;
    margin-block: 1.2rem;
    cursor: pointer;
}

.accept-button:disabled {
    border: 1px solid #aaa;
    background-color: #aaa;
    color: #ddd;
}

.accept-button:enabled:hover {
    border: 1px solid #0cdd7f;
    background-color: #0cdd7f;
}

@media screen and (min-width: 600px) {
    #background-image {
        width: 100%;
        object-fit: cover;
        background-size:cover;
        left: 0;
    }

    form {
        width: 420px;
    }
}
