@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --defaultFont: 'Poppins';
    --standardTextSizeDesktop: 15px;
    --smallTextSizeDesktop: 12px;
    --standardTextSizeMobile: 12px; 
    --smallTextSizeMobile: 10px;
    --regularFontWeight: 400;
    --MediumWeight: 500;
    --thickWeight: 700;
    --extraThickWeight: 800;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--defaultFont);
}

.landing-wrapper {
    min-height: 100vh;
    overflow-x: hidden;
}

.hero {
    background-image: url('../media/images/teacher.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    overflow: hidden;
    
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* height: 100%; */
    overflow: hidden;
    background-color: rgba(38, 109, 211, 0.8);
    padding: 20px;
}

.hero-top {
    padding: 20px;
    width: 100%;
    /* background-color: red; */
}

.hero-top-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.hero-top-box a {
    text-decoration: none;
}

.hero-top-box a button {
    border: none;
    padding: 10px 50px;
    font-weight: var(--thickWeight);
    font-size: var(--standardTextSizeDesktop);
    font-family: var(--defaultFont);
    border-radius: 3px;
    margin: 5px 0;
    cursor: pointer;
    background-color: #fff;
    color: #1E1A57;
}

.hero-top-box img {
    width: 100px;
    height: 100px;
}

.moe-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.moe-logo img {
    width: 150px;
    height: 150px;
}

.logo-txt {
    font-size: 2em;
    color: #fff;
    font-weight: var(--extraThickWeight);
}

.logo-txt span {
    font-size: 0.8em;
    color: #fff;
    font-weight: var(--regularFontWeight);
}

.action-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.teacher-apply,
.validate-license {
    height: 200px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: var(--MediumWeight);
}

.action-section div a {
    text-decoration: none;
}

.action-section div a button {
    border: none;
    padding: 10px 100px;
    font-weight: var(--MediumWeight);
    font-size: var(--standardTextSizeDesktop);
    font-family: var(--defaultFont);
    border-radius: 4px;
    margin: 5px 0;
    cursor: pointer;
}

#btn1 {
    background-color: #BF0A30;
    color: #fff;
}

#btn1:hover {
    background-color: #d00b36;
}

.validate-license form {
    display: block;
    background-color: #fff;
    padding: 0 5px;
    border-radius: 3px;
}

.validate-license form input {
    /* display: block; */
    width: 180px;
    border: none;
    outline: none;
    padding: 10px;
    font-weight: var(--regularFontWeight);
    font-size: var(--standardTextSizeDesktop);
    font-family: var(--defaultFont);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin: 5px 0;
    color: #1E1A57;
}

.validate-license form button {
    border: none;
    padding: 10.2px 20px;
    font-weight: var(--MediumWeight);
    font-size: var(--standardTextSizeDesktop);
    font-family: var(--defaultFont);
    border-radius: 4px;
    margin: 5px 0;
    cursor: pointer;
    margin-left: -6px;
    background-color: #1E1A57;
    color: #fff;
}

.validate-license form button:hover {
    background-color: hsl(244, 54%, 26%);
    color: #fff;
}

.hero-credits {
    text-align: center;
    color: #fff;
    font-size: var(--standardTextSizeDesktop);
    font-weight: var(--MediumWeight);
}

.about {
    background-color: #f5f1f1;
    display: flex;
    padding: 1em;
}

.about-txt {
    width: 30%;
    padding: 0 2em;
    color: #1E1A57;
}

.about-txt h1 {
    font-size: 1.5em;
}

.about-txt p {
    font-size: var(--standardTextSizeDesktop);
}

.about-visual {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../media/images/ministerial_complex.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-left: 20px solid #BF0A30;
    border-radius: 8px;
}

.about-visual img {
    width: 400px;
    height: 200px;
}

.qa-section {
    display: flex;
    flex-direction: row;
    margin: 2em 0 3em 0;
    justify-content: center;
}

.intro-visual {
    order: 1;
    width: 40%;
}

.intro-visual img {
    width: 300px;
    height: 300px;
    float: right;
}

.intro-text {
    order: 2;
    color: #1E1A57;
    width: 60%;
    padding: 0 5em;
}

.intro-text h1 {
    font-size: 1.5em;
}

.intro-text p {
    font-size: var(--standardTextSizeDesktop);
    text-align: left;
    margin: 0 0 3em 0;
}

.intro-text ul {
    padding: 0;
    margin: 0;
}

.intro-text ul li {
    list-style-type: none;
    font-weight: var(--MediumWeight);
    font-size: var(--standardTextSizeDesktop);
}

.bottom-credits {
    text-align: center;
    bottom: 0;
    font-size: var(--standardTextSizeDesktop);
    font-weight: var(--regularFontWeight);
    padding: 2em 0;
    background-color: #1E1A57;
    color: #fff;
}

.bottom-credits a {
    text-decoration: none;
    color: #f7562a;
    font-weight: var(--thickWeight);
}

.admin-login-btn {
    /* background-color: red; */
    text-align: right;
    padding: 0 20px;
}

.admin-login-btn {
    border: none;
    padding: 10px 20px;
    font-weight: var(--MediumWeight);
    font-size: var(--standardTextSizeMobile);
    font-family: var(--defaultFont);
    border-radius: 3px;
    margin: 5px 0;
    cursor: pointer;
}

.admin-login-btn a {
    text-decoration: underline;
    color: #fff;
}




/* Tablets */
@media screen and (max-width: 820px) {
    .landing-wrapper {
        min-height: 100vh;
    }

    .landing-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .hero {
        background-image: url('../media/images/teacher.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        object-fit: cover;
        overflow: hidden;
    }
    
    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        background-color: rgba(38, 109, 211, 0.8);
        padding: 20px;
    }
    
    .hero-top {
        padding: 20px;
        width: 100%;
    }
    
    .hero-top-box {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .hero-top-box a {
        text-decoration: none;
    }
    
    .hero-top-box a button {
        border: none;
        padding: 10px 25px;
        font-weight: var(--thickWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
        background-color: #fff;
        color: #1E1A57;
    }
    
    .hero-top-box img {
        width: 100px;
        height: 100px;
    }
    
    .moe-logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .moe-logo img {
        width: 150px;
        height: 150px;
    }
    
    .logo-txt {
        text-align: center;
        font-size: 1.5em;
        color: #fff;
        font-weight: var(--extraThickWeight);
    }
    
    .logo-txt span {
        font-size: 0.7em;
        color: #fff;
        font-weight: var(--regularFontWeight);
    }
    
    .action-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .teacher-apply,
    .validate-license {
        height: auto;
        margin: 3em 0;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 20px;
        font-weight: var(--MediumWeight);
    }
    
    .action-section div a {
        text-decoration: none;
    }
    
    .action-section div a button {
        border: none;
        padding: 10px 100px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    #btn1 {
        background-color: #BF0A30;
        color: #fff;
    }
    
    #btn1:hover {
        background-color: #d00b36;
    }
    
    .validate-license form {
        display: block;
        background-color: #fff;
        padding: 0 5px;
        border-radius: 3px;
    }
    
    .validate-license form input {
        /* display: block; */
        width: auto;
        border: none;
        outline: none;
        padding: 10px;
        font-weight: var(--regularFontWeight);
        font-size: var(--standardTextSizeDesktop);
        font-family: var(--defaultFont);
        margin: 5px 0;
        color: #1E1A57;
    }
    
    .validate-license form button {
        border: none;
        padding: 10.2px 20px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
        margin-left: -6px;
        background-color: #1E1A57;
        color: #fff;
    }
    
    .validate-license form button:hover {
        background-color: hsl(244, 54%, 26%);
        color: #fff;
    }
    
    .hero-credits {
        text-align: center;
        color: #fff;
        font-size: var(--standardTextSizeDesktop);
        font-weight: var(--MediumWeight);
    }
    
    .about {
        background-color: #f5f1f1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        height: 100%;
    }
    
    .about-txt {
        width: 100%;
        padding: 20px;
        color: #1E1A57;
        text-align: center;
    }
    
    .about-txt h1 {
        font-size: 1.5em;
    }
    
    .about-txt p {
        font-size: var(--standardTextSizeDesktop);
    }
    
    .about-visual {
        width: 100%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url('../media/images/ministerial_complex.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        border-radius: 8px;
    }
    
    .about-visual img {
        width: 200px;
        height: 200px;
    }
    
    .qa-section {
        display: flex;
        flex-direction: row;
        margin: 5em 0 3em 0;
        justify-content: center;
        padding: 20px;
    }
    
    .intro-visual {
        order: 1;
        width: 50%;
        /* background-color: yellow; */
    }
    
    .intro-visual img {
        width: 300px;
        height: 300px;
        float: right;
    }
    
    .intro-text {
        order: 2;
        color: #1E1A57;
        width: 50%;
        padding: 0 10px;
    }
    
    .intro-text h1 {
        font-size: 1.3em;
    }
    
    .intro-text p {
        font-size: var(--standardTextSizeMobile);
        text-align: left;
        margin: 0 0 3em 0;
    }
    
    .intro-text ul {
        padding: 0;
        margin: 0;
    }
    
    .intro-text ul li {
        list-style-type: none;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
    }
    
    .bottom-credits {
        text-align: center;
        bottom: 0;
        font-size: var(--standardTextSizeMobile);
        font-weight: var(--regularFontWeight);
        padding: 2em 0;
        background-color: #1E1A57;
        color: #fff;
    }
    
    .bottom-credits a {
        text-decoration: none;
        color: #f7562a;
        font-weight: var(--thickWeight);
    }
    
    .admin-login-btn {
        text-align: right;
        padding: 0 20px;
    }
    
    .admin-login-btn {
        border: none;
        padding: 10px 20px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 3px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    .admin-login-btn a {
        text-decoration: underline;
        color: #fff;
    }
}




/* Mobile Large */
@media screen and (max-width: 500px) {
    .landing-wrapper {
        min-height: 100vh;
    }
    
    .hero {
        background-image: url('../media/images/teacher.jpg');
        background-size: cover;
        background-position: left;
        background-repeat: no-repeat;
        object-fit: contain;
        overflow: hidden;
    }
    
    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        background-color: rgba(38, 109, 211, 0.8);
        padding: 20px;
    }
    
    .hero-top {
        padding: 20px;
        width: 100%;
    }
    
    .hero-top-box {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .hero-top-box a {
        text-decoration: none;
    }
    
    .hero-top-box a button {
        border: none;
        padding: 8px 25px;
        font-weight: var(--thickWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
        background-color: #fff;
        color: #1E1A57;
    }
    
    .hero-top-box img {
        width: 100px;
        height: 100px;
    }
    
    .moe-logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3em;
    }
    
    .moe-logo img {
        width: 150px;
        height: 150px;
    }
    
    .logo-txt {
        text-align: center;
        font-size: 1.5em;
        color: #fff;
        font-weight: var(--extraThickWeight);
    }
    
    .logo-txt span {
        font-size: 0.8em;
        color: #fff;
        font-weight: var(--regularFontWeight);
    }
    
    .action-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .teacher-apply,
    .validate-license {
        height: auto;
        margin: 1em 0;
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 20px;
        font-weight: var(--MediumWeight);
    }
    
    .action-section div a {
        text-decoration: none;
    }
    
    .action-section div a button {
        border: none;
        padding: 10px 50px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    #btn1 {
        background-color: #BF0A30;
        color: #fff;
    }
    
    #btn1:hover {
        background-color: #d00b36;
    }
    
    .validate-license form {
        display: block;
        background-color: #fff;
        padding: 0 5px;
        border-radius: 3px;
    }
    
    .validate-license form input {
        width: auto;
        border: none;
        outline: none;
        padding: 10px;
        font-weight: var(--regularFontWeight);
        font-size: var(--standardTextSizeDesktop);
        font-family: var(--defaultFont);
        margin: 5px 0;
        color: #1E1A57;
    }
    
    .validate-license form button {
        border: none;
        padding: 10px 20px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
        margin-left: -6px;
        background-color: #1E1A57;
        color: #fff;
    }
    
    .validate-license form button:active {
        background-color: hsl(244, 54%, 26%);
        color: #fff;
    }
    
    .hero-credits {
        text-align: center;
        color: #fff;
        font-size: var(--standardTextSizeDesktop);
        font-weight: var(--MediumWeight);
    }
    
    .about {
        background-color: #f5f1f1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        height: 100%;
    }
    
    .about-txt {
        width: 100%;
        padding: 20px;
        color: #1E1A57;
        text-align: center;
    }
    
    .about-txt h1 {
        font-size: 1.5em;
    }
    
    .about-txt p {
        font-size: var(--standardTextSizeDesktop);
    }
    
    .about-visual {
        width: 100%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url('../media/images/ministerial_complex.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        border-radius: 8px;
    }
    
    .about-visual img {
        width: 200px;
        height: 200px;
    }
    
    .qa-section {
        display: flex;
        flex-direction: column;
        margin: 5em 0 3em 0;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .intro-visual {
        order: 1;
        width: auto;
    }
    
    .intro-visual img {
        width: 150px;
        height: 150px;
        float: none;
    }
    
    .intro-text {
        order: 2;
        color: #1E1A57;
        width: auto;
        padding: 0 10px;
    }
    
    .intro-text h1 {
        font-size: 1.3em;
    }
    
    .intro-text p {
        font-size: var(--standardTextSizeMobile);
        text-align: left;
        margin: 0 0 3em 0;
    }
    
    .intro-text ul {
        padding: 0;
        margin: 0;
    }
    
    .intro-text ul li {
        list-style-type: none;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
    }
    
    .bottom-credits {
        text-align: center;
        bottom: 0;
        font-size: var(--standardTextSizeMobile);
        font-weight: var(--regularFontWeight);
        padding: 2em 0;
        background-color: #1E1A57;
        color: #fff;
    }
    
    .bottom-credits a {
        text-decoration: none;
        color: #f7562a;
        font-weight: var(--thickWeight);
    }
    
    .admin-login-btn {
        text-align: right;
        padding: 0 20px;
    }
    
    .admin-login-btn {
        border: none;
        padding: 10px 20px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 3px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    .admin-login-btn a {
        text-decoration: underline;
        color: #fff;
    }
}



/* Mobile Regular */
@media screen and (max-width: 415px) {
    .landing-wrapper {
        min-height: 100vh;
    }
    
    .hero {
        background-image: url('../media/images/teacher.jpg');
        background-size: cover;
        background-position: left;
        background-repeat: no-repeat;
        object-fit: contain;
        overflow: hidden;
    }
    
    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        background-color: rgba(38, 109, 211, 0.8);
        padding: 20px;
    }
    
    .hero-top {
        padding: 20px;
        width: 100%;
    }
    
    .hero-top-box {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .hero-top-box a {
        text-decoration: none;
    }
    
    .hero-top-box a button {
        border: none;
        padding: 8px 25px;
        font-weight: var(--thickWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
        background-color: #fff;
        color: #1E1A57;
    }
    
    .hero-top-box img {
        width: 100px;
        height: 100px;
    }
    
    .moe-logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3em;
    }
    
    .moe-logo img {
        width: 150px;
        height: 150px;
    }
    
    .logo-txt {
        text-align: center;
        font-size: 1.5em;
        color: #fff;
        font-weight: var(--extraThickWeight);
    }
    
    .logo-txt span {
        font-size: 0.8em;
        color: #fff;
        font-weight: var(--regularFontWeight);
    }
    
    .action-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .teacher-apply,
    .validate-license {
        height: auto;
        margin: 1em 0;
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 20px;
        font-weight: var(--MediumWeight);
    }
    
    .action-section div a {
        text-decoration: none;
    }
    
    .action-section div a button {
        border: none;
        padding: 10px 50px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    #btn1 {
        background-color: #BF0A30;
        color: #fff;
    }
    
    #btn1:hover {
        background-color: #d00b36;
    }
    
    .validate-license form {
        display: block;
        background-color: #fff;
        padding: 0 5px;
        border-radius: 3px;
    }
    
    .validate-license form input {
        width: auto;
        border: none;
        outline: none;
        padding: 10px;
        font-weight: var(--regularFontWeight);
        font-size: var(--standardTextSizeDesktop);
        font-family: var(--defaultFont);
        margin: 5px 0;
        color: #1E1A57;
    }
    
    .validate-license form button {
        border: none;
        padding: 10px 20px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
        margin-left: -6px;
        background-color: #1E1A57;
        color: #fff;
    }
    
    .validate-license form button:active {
        background-color: hsl(244, 54%, 26%);
        color: #fff;
    }
    
    .hero-credits {
        text-align: center;
        color: #fff;
        font-size: var(--standardTextSizeDesktop);
        font-weight: var(--MediumWeight);
    }
    
    .about {
        background-color: #f5f1f1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        height: 100%;
    }
    
    .about-txt {
        width: 100%;
        padding: 20px;
        color: #1E1A57;
        text-align: center;
    }
    
    .about-txt h1 {
        font-size: 1.5em;
    }
    
    .about-txt p {
        font-size: var(--standardTextSizeDesktop);
    }
    
    .about-visual {
        width: 100%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url('../media/images/ministerial_complex.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        border-radius: 8px;
    }
    
    .about-visual img {
        width: 200px;
        height: 200px;
    }
    
    .qa-section {
        display: flex;
        flex-direction: column;
        margin: 5em 0 3em 0;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .intro-visual {
        order: 1;
        width: auto;
    }
    
    .intro-visual img {
        width: 150px;
        height: 150px;
        float: none;
    }
    
    .intro-text {
        order: 2;
        color: #1E1A57;
        width: auto;
        padding: 0 10px;
    }
    
    .intro-text h1 {
        font-size: 1.3em;
    }
    
    .intro-text p {
        font-size: var(--standardTextSizeMobile);
        text-align: left;
        margin: 0 0 3em 0;
    }
    
    .intro-text ul {
        padding: 0;
        margin: 0;
    }
    
    .intro-text ul li {
        list-style-type: none;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
    }
    
    .bottom-credits {
        text-align: center;
        bottom: 0;
        font-size: var(--standardTextSizeMobile);
        font-weight: var(--regularFontWeight);
        padding: 2em 0;
        background-color: #1E1A57;
        color: #fff;
    }
    
    .bottom-credits a {
        text-decoration: none;
        color: #f7562a;
        font-weight: var(--thickWeight);
    }
    
    .admin-login-btn {
        text-align: right;
        padding: 0 20px;
    }
    
    .admin-login-btn {
        border: none;
        padding: 10px 20px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 3px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    .admin-login-btn a {
        text-decoration: underline;
        color: #fff;
    }
}



/* Mobile Small */
@media screen and (max-width: 380px) {
    .landing-wrapper {
        min-height: 100vh;
    }
    
    .hero {
        background-image: url('../media/images/teacher.jpg');
        background-size: cover;
        background-position: left;
        background-repeat: no-repeat;
        object-fit: contain;
        overflow: hidden;
    }
    
    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        background-color: rgba(38, 109, 211, 0.8);
        padding: 20px;
    }
    
    .hero-top {
        padding: 20px;
        width: 100%;
    }
    
    .hero-top-box {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .hero-top-box a {
        text-decoration: none;
    }
    
    .hero-top-box a button {
        border: none;
        padding: 8px 25px;
        font-weight: var(--thickWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
        background-color: #fff;
        color: #1E1A57;
    }
    
    .hero-top-box img {
        width: 100px;
        height: 100px;
    }
    
    .moe-logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3em;
    }
    
    .moe-logo img {
        width: 150px;
        height: 150px;
    }
    
    .logo-txt {
        text-align: center;
        font-size: 1.5em;
        color: #fff;
        font-weight: var(--extraThickWeight);
    }
    
    .logo-txt span {
        font-size: 0.8em;
        color: #fff;
        font-weight: var(--regularFontWeight);
    }
    
    .action-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .teacher-apply,
    .validate-license {
        height: auto;
        margin: 1em 0;
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 20px;
        font-weight: var(--MediumWeight);
    }
    
    .action-section div a {
        text-decoration: none;
    }
    
    .action-section div a button {
        border: none;
        padding: 10px 50px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    #btn1 {
        background-color: #BF0A30;
        color: #fff;
    }
    
    #btn1:hover {
        background-color: #d00b36;
    }
    
    .validate-license form {
        display: block;
        background-color: #fff;
        padding: 0 5px;
        border-radius: 3px;
    }
    
    .validate-license form input {
        width: auto;
        border: none;
        outline: none;
        padding: 10px 5px;
        font-weight: var(--regularFontWeight);
        font-size: var(--standardTextSizeDesktop);
        font-family: var(--defaultFont);
        margin: 5px 0;
        color: #1E1A57;
    }
    
    .validate-license form button {
        border: none;
        padding: 10px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
        margin-left: -6px;
        background-color: #1E1A57;
        color: #fff;
    }
    
    .validate-license form button:active {
        background-color: hsl(244, 54%, 26%);
        color: #fff;
    }
    
    .hero-credits {
        text-align: center;
        color: #fff;
        font-size: var(--standardTextSizeDesktop);
        font-weight: var(--MediumWeight);
    }
    
    .about {
        background-color: #f5f1f1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        height: 100%;
    }
    
    .about-txt {
        width: 100%;
        padding: 20px;
        color: #1E1A57;
        text-align: center;
    }
    
    .about-txt h1 {
        font-size: 1.5em;
    }
    
    .about-txt p {
        font-size: var(--standardTextSizeDesktop);
    }
    
    .about-visual {
        width: 100%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url('../media/images/ministerial_complex.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        border-radius: 8px;
    }
    
    .about-visual img {
        width: 200px;
        height: 200px;
    }
    
    .qa-section {
        display: flex;
        flex-direction: column;
        margin: 5em 0 3em 0;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .intro-visual {
        order: 1;
        width: auto;
    }
    
    .intro-visual img {
        width: 150px;
        height: 150px;
        float: none;
    }
    
    .intro-text {
        order: 2;
        color: #1E1A57;
        width: auto;
        padding: 0 10px;
    }
    
    .intro-text h1 {
        font-size: 1.3em;
    }
    
    .intro-text p {
        font-size: var(--standardTextSizeMobile);
        text-align: left;
        margin: 0 0 3em 0;
    }
    
    .intro-text ul {
        padding: 0;
        margin: 0;
    }
    
    .intro-text ul li {
        list-style-type: none;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
    }
    
    .bottom-credits {
        text-align: center;
        bottom: 0;
        font-size: var(--standardTextSizeMobile);
        font-weight: var(--regularFontWeight);
        padding: 2em 0;
        background-color: #1E1A57;
        color: #fff;
    }
    
    .bottom-credits a {
        text-decoration: none;
        color: #f7562a;
        font-weight: var(--thickWeight);
    }
    
    .admin-login-btn {
        text-align: right;
        padding: 0 20px;
    }
    
    .admin-login-btn {
        border: none;
        padding: 10px 20px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 3px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    .admin-login-btn a {
        text-decoration: underline;
        color: #fff;
    }
}



/* Mobile Tiny */
@media screen and (max-width: 360px) {
    .landing-wrapper {
        min-height: 100vh;
    }
    
    .hero {
        background-image: url('../media/images/teacher.jpg');
        background-size: cover;
        background-position: left;
        background-repeat: no-repeat;
        object-fit: contain;
        overflow: hidden;
    }
    
    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        background-color: rgba(38, 109, 211, 0.8);
        padding: 20px;
    }
    
    .hero-top {
        padding: 20px;
        width: 100%;
    }
    
    .hero-top-box {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .hero-top-box a {
        text-decoration: none;
    }
    
    .hero-top-box a button {
        border: none;
        padding: 8px 25px;
        font-weight: var(--thickWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
        background-color: #fff;
        color: #1E1A57;
    }
    
    .hero-top-box img {
        width: 100px;
        height: 100px;
    }
    
    .moe-logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3em;
    }
    
    .moe-logo img {
        width: 150px;
        height: 150px;
    }
    
    .logo-txt {
        text-align: center;
        font-size: 1.4em;
        color: #fff;
        font-weight: var(--extraThickWeight);
    }
    
    .logo-txt span {
        font-size: 0.7em;
        color: #fff;
        font-weight: var(--regularFontWeight);
    }
    
    .action-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .teacher-apply,
    .validate-license {
        height: auto;
        margin: 1em 0;
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 16px;
        font-weight: var(--MediumWeight);
    }
    
    .action-section div a {
        text-decoration: none;
    }
    
    .action-section div a button {
        border: none;
        padding: 10px 50px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    #btn1 {
        background-color: #BF0A30;
        color: #fff;
    }
    
    #btn1:hover {
        background-color: #d00b36;
    }
    
    .validate-license form {
        display: block;
        text-align: center;
        background-color: #fff;
        padding: 0 5px;
        border-radius: 3px;
        width: auto;
    }
    
    .validate-license form input {
        width: 55%;
        border: none;
        outline: none;
        padding: 8px 5px;
        font-weight: var(--regularFontWeight);
        font-size: var(--standardTextSizeDesktop);
        font-family: var(--defaultFont);
        margin: 5px 0;
        color: #1E1A57;
    }
    
    .validate-license form button {
        width: auto;
        border: none;
        padding: 10px 12px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 4px;
        margin: 5px 0;
        cursor: pointer;
        margin-left: 0;
        background-color: #1E1A57;
        color: #fff;
    }
    
    .validate-license form button:active {
        background-color: hsl(244, 54%, 26%);
        color: #fff;
    }
    
    .hero-credits {
        text-align: center;
        color: #fff;
        font-size: var(--standardTextSizeDesktop);
        font-weight: var(--MediumWeight);
    }
    
    .about {
        background-color: #f5f1f1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        height: 100%;
    }
    
    .about-txt {
        width: 100%;
        padding: 20px;
        color: #1E1A57;
        text-align: center;
    }
    
    .about-txt h1 {
        font-size: 1em;
    }
    
    .about-txt p {
        font-size: var(--standardTextSizeMobile);
    }
    
    .about-visual {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url('../media/images/ministerial_complex.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        border-radius: 8px;
    }
    
    .qa-section {
        display: flex;
        flex-direction: column;
        margin: 5em 0 3em 0;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .intro-visual {
        order: 1;
        width: auto;
    }
    
    .intro-visual img {
        width: 150px;
        height: 150px;
        float: none;
    }
    
    .intro-text {
        order: 2;
        color: #1E1A57;
        width: auto;
        padding: 0 10px;
    }
    
    .intro-text h1 {
        font-size: 1em;
    }
    
    .intro-text p {
        font-size: var(--standardTextSizeMobile);
        text-align: left;
        margin: 0 0 3em 0;
    }
    
    .intro-text ul {
        padding: 0;
        margin: 0;
    }
    
    .intro-text ul li {
        list-style-type: none;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
    }
    
    .bottom-credits {
        text-align: center;
        bottom: 0;
        font-size: var(--standardTextSizeMobile);
        font-weight: var(--regularFontWeight);
        padding: 2em 0;
        background-color: #1E1A57;
        color: #fff;
    }
    
    .bottom-credits a {
        text-decoration: none;
        color: #f7562a;
        font-weight: var(--thickWeight);
    }
    
    .admin-login-btn {
        text-align: right;
        padding: 0 20px;
    }
    
    .admin-login-btn {
        border: none;
        padding: 10px 20px;
        font-weight: var(--MediumWeight);
        font-size: var(--standardTextSizeMobile);
        font-family: var(--defaultFont);
        border-radius: 3px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    .admin-login-btn a {
        text-decoration: underline;
        color: #fff;
    }
}