﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input, button {
    outline: none;
}

button {
    cursor: pointer;
}

#RecoverSection {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: none;
}


.language-container {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 30px;
    margin-bottom: 10px;
}

    .language-container .header {
        cursor: pointer;
        position: relative;
        z-index: 15;
        float: right;
        width: 130px;
        height: 40px;
        border-radius: 5px;
        line-height: 40px;
        background: #f37021;
        padding: 0 30px;
    }

#CurrentLang {
    color: white;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.flag {
    float: left;
    position: relative;
    top: 5px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    margin-top: 10px;
    margin-right: 5px;
    margin-left: 8px;
    display: inline-block;
}

.language-container .flag {
    margin-top: 0px;
    margin-right: 5px;
    margin-left: 8px;
}

#CurrentLang .flag {
    margin-top: 5px;
}

.flag.flag-1 {
    background-image: url(../../smmb/general/images/icons/flag_es.png);
    background-position: center;
}

    .flag.flag-2 {
        background-image: url(../../smmb/general/images/icons/flag_eng.png);
        background-position: center;
    }

    .flag.flag-3 {
        background-image: url(../../smmb/general/images/icons/flag_fr.png);
        background-position: center;
    }

#LanguageList {
    display: none;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 20px;
    background: white;
    border: 1px solid #e1e1e1;
    width: 130px;
    list-style: none;
    padding: 0;
    padding-top: 20px;
    background: #e7e7e7;
    border-radius: 0 0 20px 20px;
}

#LanguageList a {
    height: 30px;
    line-height: 30px;
    padding-left: 0px;
    padding-top: 0px;
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
    background: white;
    margin-bottom: 5px;
    margin-top: 5px;
    border-radius: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    display: block;
    width: calc(100% - 20px);
    text-align: center;
    text-decoration: none;
    color: #808080;
    transition-duration: 200ms;
}

    #LanguageList a:hover {
        color: white;
        background: rgba(17,154,212,1);
        transform: scale(1.05);
    }

.language-container:hover #LanguageList {
    display: block;
}

.recover-title {
    font-size: 35px;
    margin-bottom: 30px;
    color: white;
    font-weight: normal;
}

#RecoverWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.recover-type-selection {
    background: white;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 1000px;
    position: relative;
    box-shadow: rgba(0,0,0,.1) 0 0 5px 0, rgba(0,0,0,.1) 0 0 1px 0;
    max-height: 95vh;
    min-height: 700px;
    height: auto;
    overflow: auto;
}


    .recover-type-selection h3 {
        font-size: 25px;
        color: rgba(255,95,0,1);
        text-align: center;
        width: 100%;
        font-weight: normal;
    }

.recover-type-student {
    margin-right: 50px;
    text-align: center;
}

.recover-type-teacher {
    text-align: center;
}

    .recover-type-student div,
    .recover-type-teacher div {
        text-align: center;
        display: inline-block;
        padding: 5px;
        height: 160px;
        line-height: 100px;
        width: 160px;
        background: white;
        font-size: 50px;
        border-radius: 10px;
        margin-top: 50px;
        cursor: pointer;
        transition-duration: 200ms;
    }

        .recover-type-student div:hover,
        .recover-type-teacher div:hover {
            transform: scale(1.2);
        }

.recover-type-student {
    padding-right: 50px;
    border-right: 2px solid rgba(255,95,0,1);
}

.teacher-password-section {
    display: none;
    text-align: center;
}


.teacher-password-section h4 {
    color: rgba(255,95,0,1);
    font-weight: normal;
    font-size: 18px;
    max-width: 600px;
}

.teacher-password-email-section {
    text-align: center;
}

.teacher-password-form {
    margin-top: 30px;
}

    .teacher-password-form > label {
        display: block;
        text-align: center;
    }

    .teacher-password-form input[type=text] {
        display: block;
        text-align: left;
        width: 100%;
        border-radius: 10px;
        border: 1px solid #aaadb2;
        padding: 15px;
        outline: none;
        text-align: center;
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 0px;
        color: black;
    }


.teacher-password-linked-support,
.teacher-password-linked-accept,
.teacher-password-request-form-cancel,
.teacher-password-request-form-submit,
.teacher-password-verify-email,
.teacher-password-check-email-support,
.teacher-password-check-email-send-email,
.teacher-password-cancel,
.teacher-password-email-confirm,
.teacher-newpassword-send-email,
.teacher-newpassword-cancel,
.teacher-password-send-code,
.teacher-password-send-email {
    color: white;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 30px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 5px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-color: #28a745;
    border-color: #28a745;
    border: 2px solid white;
    margin-top: 15px;
}

    .teacher-password-linked-support,
    .teacher-password-check-email-support {
        background: #6B7280;
    }

.teacher-password-request-form-cancel,
.teacher-password-cancel,
.teacher-newpassword-cancel {
    background: #dc3545;
}

#CancelRecoverPassword {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 100px;
    border: none;
    background: none;
    padding: 5px;
    font-size: 18px;
    background: rgba(255,95,0,1);
    border-radius: 5px;
    color: white;
}

.teacher-password-note {
    color: #aaadb2;
}

.teacher-password-code-section {
    display: none;
}

.teacher-newpassword-section {
    display: none;
    text-align: center;
}

    .teacher-newpassword-section img {
        width: 150px;
        height: auto;
        border-radius: 50%;
        margin-bottom: 20px; 
    }

.teacher-newpassword-section-user-name {
    display: block;
    text-align: center;
    font-size: 18px;
}

.teacher-newpassword-email-section {
    margin-top: 15px;
}

    .teacher-newpassword-email-section input[type="password"] {
        display: block;
        margin-top: 15px;
        padding: 7px;
        width: 100%;
        border-radius: 5px;
        border: 1px solid #e1e1e1;
        font-size: 16px;
    }

    .teacher-newpassword-email-section h4 {
        color: rgba(255,95,0,1);
        font-weight: normal;
        font-size: 22px;
    }


    /*Student*/

.student-password-section {
    display: none;
    text-align: center;
}

    .student-password-section h4 {
        color: rgba(255,95,0,1);
        font-weight: normal;
        font-size: 16px;
    }

.student-password-email-section {
    margin-top: 30px;
}

.student-password-form input[type=text] {
    display: block;
    text-align: left;
    margin-left: 0px;
    width: calc(100% - 0px);
    border-radius: 10px;
    border: 1px solid #aaadb2;
    padding: 10px 15px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 0px;
    margin-top: 10px;
    color: black;
}

.student-password-questions-check,
.student-password-questions-cancel,
.student-password-send-email,
.student-password-cancel {
    color: white;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 5px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-color: #28a745;
    border-color: #28a745;
    border: 2px solid white;
    margin-top: 15px;
}

.student-password-questions-cancel,
.student-password-cancel {
    background: #dc3545;
}

.student-password-questions-section {
    display: none;
}

.recovery-password-section select {
    border-radius: 10px;
    background: white;
    font-size: 14px;
    width: 100%;
    padding: 5px;
    color: rgba(0, 0, 0, 1);
    margin: 0;
    line-height: 0;
    margin-bottom: 5px;
}

.recovery-password-section input[type="text"] {
    line-height: 0;
    border-radius: 10px;
    background: rgb(196, 196, 196);
    font-size: 14px;
    width: 100%;
    padding: 5px;
    color: black;
    border: 1px solid rgba(0,0,0,0.2);
    margin-top: 0px;
    margin-bottom: 15px;
}

.student-password-questions-section h4 {
    color: rgba(255,95,0,1);
    font-weight: normal;
    font-size: 22px;
    text-align: center;
    margin-bottom: 15px;
}



.current-site-Mambo #RecoverSection {
    background: rgba(237,26,120,1);
    background: -moz-linear-gradient(top, rgba(237,26,120,1) 0%, rgba(148,49,134,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237,26,120,1)), color-stop(100%, rgba(148,49,134,1)));
    background: -webkit-linear-gradient(top, rgba(237,26,120,1) 0%, rgba(148,49,134,1) 100%);
    background: -o-linear-gradient(top, rgba(237,26,120,1) 0%, rgba(148,49,134,1) 100%);
    background: -ms-linear-gradient(top, rgba(237,26,120,1) 0%, rgba(148,49,134,1) 100%);
    background: linear-gradient(to bottom, rgba(237,26,120,1) 0%, rgba(148,49,134,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed1a78', endColorstr='#943186', GradientType=0 );
}

    .current-site-Mambo #RecoverSection:before {
        background-image: url(../../smmb/mambo/images/general/lines.png);
    }

.current-site-Mambo #CancelRecoverPassword {
    background: rgba(148,49,134,1);
}

.current-site-Mambo .teacher-password-section h4,
.current-site-Mambo .teacher-newpassword-email-section h4,
.current-site-Mambo .student-password-questions-section h4,
.current-site-Mambo .student-password-section h4,
.current-site-Mambo .recover-type-selection h3 {
    color: rgba(148,49,134,1);
}

.current-site-Mambo .recover-type-student {
    border-right: 2px solid rgba(148,49,134,1);
}


.teacher-password-check-email-section,
.teacher-password-form-section {
    display: none;
}


.teacher-password-check-email-summary img {
    border-radius: 50%;
    width: 150px;
    height: 150px;

}

.teacher-password-check-email-summary ul {
    text-align: center;
    list-style: none;
}

.teacher-password-check-form-back,
.teacher-password-check-email-back {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f37021;
    color: white;
}

.teacher-password-request-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}

.teacher-password-request-form input[type=text] {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    border: 1px solid #aaadb2;
    padding: 10px 15px;
    outline: none;
    text-align: center;
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 0px;
    color: black;
}

    .teacher-password-request-form > div {
        position: relative;
        width: 100%;
        max-width: 400px;
    }

        .teacher-password-request-form > div > span {
            position: absolute;
            right: -30px;
            top: 7px;
        }

        .teacher-password-request-form > div > span i {
          font-size: 25px;
          color: rgba(255,95,0,1);
          cursor: pointer;
          display: block;
        }


        .teacher-password-request-form > div > span:hover:after {
            content: var(--text);
            position: absolute;
            bottom: calc(100% + 5px);
            right: 10px;
            width: 300px;
            padding: 7px 15px;
            border-radius: 5px 5px 0 5px;
            box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
            background: rgba(255,95,0,1);
            color: white;
        }


.teacher-password-student-request-section > p,
.teacher-password-support-request-section > p,
.teacher-password-linked-section > p {
    font-size: 16px;
    max-width: 500px;
}

.teacher-password-student-request-section,
.teacher-password-support-request-section,
.teacher-password-linked-section {
    display: none;
}