@import url("https://fonts.googleapis.com/css?family=Inter:400,700,500|Fredoka:400,500,600|Poppins:400,500,600");


:root {
    --font-family-fredoka: "Fredoka", Helvetica;
    --font-family-inter: "Inter", Helvetica;
    --font-family-poppins: "Poppins", Helvetica;

    --clr-secondary: #00AB85;
    --clr-tertiary: #B3E1E3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-smooth: always;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html,
body,
.wrapper {
    width: 100%;
    height: 100%;
    font-family: var(--font-family-poppins);

}

.wrapper {
    min-height: 100%;
    background-image: url('../img/background-image.png');
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.wrapper .login-form {
    width: 625px;
    max-height: 700px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: rgb(0 0 0 / 15%) 0px 2px 8px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 90px;
    position: relative;
    overflow: hidden;
    margin: 0 30px;
}

.wrapper .login-form .application-information {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background-color: #ffffff;
    padding: 90px;
    transform: translateY(110%);
    transition: transform .5s;
}

.wrapper .login-form .sm-plus {
    position: absolute;
    right: 30px;
    top: 25px;
    transform: rotate(45deg);
    transition: transform .3s;
    cursor: pointer;
}

.wrapper .login-form .sm-plus:before {
    color: #323232;
}

.wrapper .login-form .sm-plus:hover {
    transform: rotate(135deg);
}

.wrapper .login-form .sm-plus {
    display: none;
}

.wrapper .login-form .application-information .sm-plus {
    display: block;
}

.wrapper .login-form .application-information .description-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.wrapper .login-form .application-information .description-text {
    margin-bottom: 35px;
}

.wrapper .login-form .application-information .image-row {
    padding-left: 15px;
}

.wrapper .login-form .application-information .image-row .images {
    margin-bottom: 10px;
}

.wrapper .login-form .application-information .image-row .images img {
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    margin-left: -15px;
    background-color: #fff;
}

.wrapper .login-form .application-information .image-row p {
    margin-left: -15px;
}

.wrapper .login-form .logo {
    width: 133px;
    height: 133px;
    overflow: hidden;
    margin-bottom: 25px;
}

.wrapper .login-form .logo svg {
    width: 133px;
    height: 133px;
}

.wrapper .login-form .welcome-message {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.wrapper .login-form .welcome-message .welcome-title {
    font-family: var(--font-family-fredoka);
    font-weight: 600;
    font-size: 40px;
    color: #00a9e0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wrapper .login-form .welcome-message .welcome-title i {
    font-size: 32px;
    transform: rotate(0);
    transition: transform .4s ease-in-out;
    transform-origin: 55% 50%;
    display: flex;
    align-items: center;
    transition: all .3s;
    justify-content: center;
    animation-name: Wave;
    animation-duration: .3s;
    animation-timing-function: ease-in-out;
}

.wrapper .login-form .welcome-message .description {
    color: #d3d3d3;
    font-size: 14px;
    font-weight: 400;
    margin-left: 3px;
}

.wrapper .login-form .button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.wrapper .login-form .button-box {
    width: 100%;
    padding: 10px 20px;
    height: 65px;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 30px;
    line-height: 15px;
    text-decoration: none;
}



.wrapper .login-form .button-box i.icon {
    font-size: 27px;
}

.wrapper .login-form .button-box .sm-arrow {
    margin-left: auto;
    transform: rotate(-90deg) translateY(0);
    font-size: 14px;
    transition: transform .3s;
}

.wrapper .login-form .button-box:hover .sm-arrow {
    transform: rotate(-90deg) translateY(-10px);
}

.wrapper .login-form .button-box .button-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper .login-form .button-box .button-details .button-text {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
    color: #2b4f65;
    gap: 5px;
    position: relative;
}

.wrapper .login-form .button-box .button-details .button-description.soon-text {
    font-family: var(--font-family-fredoka);
    font-size: 15px;
    font-weight: 600;
    color: #ef9141;
    margin-top: -3px;
}



.wrapper .login-form .button-box .button-details .button-description {
    font-size: 14px;
    color: #d3d3d3;
    font-weight: 400;
}

.wrapper .login-form .smartie-information {
    width: 100%;
    background-color: #00a9e0;
    padding: 10px;
    border-radius: 6px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: background-color .2s;
}

.wrapper .login-form .smartie-information:hover {
    background-color: rgba(0, 149, 190, 1);
}

.wrapper .login-form .smartie-information img {
    width: 12px;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(0) scale(1) rotate(0);
    transition: transform .3s;
}

.wrapper .login-form .smartie-information:hover img {
    transform: translateY(-50%) translateX(-5px) scale(1.1) rotate(5deg);
}

.wrapper .login-form .student-form {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 15px;
}

.wrapper .login-form .student-form.reset {
    display: none;
}

.wrapper .login-form .student-form .input-box {
    width: 100%;
    position: relative;
}

.wrapper .login-form .student-form .input-box input {
    width: 100%;
    font-size: 16px;
    height: 42px;
    padding: 5px 15px;
    outline: 0;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    transition: border-color .3s;
}

.wrapper .login-form .student-form .input-box input:hover,
.wrapper .login-form .student-form .input-box input:focus {
    border-color: #00ab85;
}

.wrapper .login-form .student-form .input-box .label-text {
    font-size: 16px;
    color: #d3d3d3;
    background-color: #ffffff;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s;
}

.wrapper .login-form .student-form .input-box input:focus~.label-text,
.wrapper .login-form .student-form .input-box input.active~.label-text {
    font-size: 14px;
    top: -10px;
    left: 10px;
    transform: translateY(0);
    padding: 0 5px;
}

.wrapper .login-form .student-form .input-box input:focus~.label-text {
    color: #00ab85;
}

.wrapper .login-form .student-form .input-box.icon i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.wrapper .login-form .student-form .input-box.icon .sm-eye-dash {
    display: none;
}

.wrapper .login-form .student-form button {
    width: 100%;
    background-color: #00a9e0;
    padding: 10px;
    border-radius: 6px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: background-color .2s;
    outline: none;
    border: 0;
    font-size: 16px;
    margin-top: 10px;
    height: 42px;
}

.wrapper .login-form .student-form button:hover {
    background-color: rgba(0, 149, 190, 1);
}


.wrapper .login-form .bottom-content {
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.wrapper .login-form .bottom-content .text-button {
    font-size: 14px;
    color: #d3d3d3;
    cursor: pointer;
    position: relative;
    z-index: 33;
}

.wrapper .login-form .bottom-content .text-button:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #d3d3d3;
    position: absolute;
    bottom: 4px;
    z-index: -1;
    transition: width .3s;
}

.wrapper .login-form .bottom-content .text-button:hover:before {
    width: 100%;
}

.wrapper .login-form .bottom-content .description {
    text-align: center;
    padding: 0 30px;
    font-size: 14px;
    color: #d3d3d3;
}


@keyframes Wave {

    25% {
        transform: rotate(20deg)
    }

    50% {
        transform: rotate(0)
    }

    75% {
        transform: rotate(-25deg)
    }

}

@media screen and (max-width: 551px) {

    .wrapper {
        min-height: 100%;
        height: auto;
        background: #ffffff;

    }

    .wrapper .login-form {
        width: 100%;
        height: 100%;
        padding: 30px 25px;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
    }

    .wrapper .login-form .application-information {
        width: 100%;
        height: 100%;
        padding: 50px 25px;
        border-radius: 0;
        transition: transform .5s;
    }

    .wrapper .login-form .sm-plus {
        right: 25px;
        top: 15px;
    }

    .wrapper .login-form .welcome-message .welcome-title {
        font-size: 38px;
    }

    .wrapper .login-form .welcome-message .welcome-title i {
        font-size: 30px;
    }

    .wrapper .login-form .welcome-message .description {
        font-size: 12px;
    }

    .wrapper .login-form .logo {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
    }

    .wrapper .login-form .logo svg {
        width: 120px;
        height: 120px;
    }

    .wrapper .login-form .button-box {
        height: 62px;
    }

    .wrapper .login-form .button-box i.icon {
        font-size: 28px;
    }

    .wrapper .login-form .smartie-information {
        font-size: 15px;
    }

    .wrapper .login-form .button-box .button-details .button-text {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .wrapper .login-form .button-box .button-details .button-description {
        font-size: 14px;
    }

    .wrapper .login-form .button-box .button-details .button-description.soon-text {
        font-size: 14px !important;
    }

    .wrapper .login-form .smartie-information img {
        width: 12px;
    }

    .wrapper .login-form .button-box .button-details .button-description.soon-text {
        font-size: 12px;
        margin-top: -2px;
    }

    .wrapper .login-form .button-box .sm-arrow {
        font-size: 11px;
    }

    .wrapper .login-form .bottom-content .description {
        font-size: 12px;
    }

}

@media screen and (max-height: 400px) {
    .wrapper {
        min-height: 100%;
        height: auto;
    }

    .wrapper .login-form {
        margin: 30px;
    }
}