@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

:root {
    --pirmary-color: rgba(0, 0, 0, 0.7);
    --pirmary-font-size: 1rem;
}

body {
    padding: 0;
}

.bg-image {
    width: 100%;
    height: 100vh;
}

#sections {
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}

.left-section {
    height: 100%;
    flex-basis: 60%;
    position: relative;
}

.left-section h1 {
    color: #091931;
    font-size: 4.5vw;
    font-weight: 700;
    position: absolute;
    top: 15rem;
    left: 2rem;
    line-height: 1.3;
}

.right-section {
    position: relative;
    flex-basis: 40%;
}


.logo img {
    width: 16vw;
}

h2 {
    font-weight: 700;
    color: var(--pirmary-color);
}

p, label {
    margin: 0;
    font-weight: 400;
    color: var(--pirmary-color);
    font-size: var(--pirmary-font-size);
}


.primary-link {
    color: var(--pirmary-color);
    font-size: var(--pirmary-font-size);
}

.form-container {
    padding: 0 60px;
    overflow-y: scroll;
    height: 85vh;
}

form {
    margin: 20px 0 0 0;
}

.input-container {
    margin: 0 0 15px 0;
    position: relative;
}

.input-container input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    font-size: 1.1vw;
    padding: 5px 10px;
    border-radius: 5px;
}

.small-text {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.small-text img {
    width: 1rem;
}

#verification-container {
    flex-wrap: nowrap;
}

#verification-button {
    font-size: 0.65rem;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    white-space: nowrap;
    padding: 5px 10px;
    margin: 8px 0 0 0;
}

#title-container {
    justify-content: start;
}


.checkbox-container .small-text {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1vw;
}

.checkbox-container input[type="checkbox"] {
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.custom-primary-button {
    background-color: #091a2e;
    border: none;
    padding: 5px 20px;
    color: white;
    font-weight: 600;
    border-radius: 100px;
    display: flex;
}

#alert-toast {
    position: fixed;
    top: 5px;
    right: 15px;
    background-color: #a2c99e;
}

#enter-password-section {
    display: none;
}

#submit-form-button {
    padding: 5px 50px;
}

#contact-us-section {
    display: none;
}

.show-hide-password-button {
    font-size: 12px;
    white-space: nowrap;
}

.login-link {
    margin-left: auto;
}

@media only screen and (max-width: 1023px) {
    .left-section {
        flex-basis: 100%;
        display: none;
    }

    .logo img {
        width: 50vw;
    }

    .right-section {
        flex-basis: 100%;
    }

    .bg-image {
        height: auto;
    }

    #verification-container {
        flex-wrap: wrap;
    }

    #verification-button {
        padding: 10px;
    }

    .form-container {
        height: auto;
    }

    .input-container input {
        font-size: 18px;
        padding: 8px 10px;
    }

    #title-container {
        justify-content: space-between;
    }
}

@media only screen and (max-width: 1439px) {
    #verification-container {
        flex-wrap: wrap;
    }

}
