/* Google Font Link */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap');
:root {
    --salmon-pink: #1b9c4a;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
    position: relative;
    background-image: url(../img/skm-banner-2.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 100vh;
    background-attachment: fixed;
}

.main {
    display: none;
}

.active {
    display: block;
}

.login {
    position: absolute;
    max-width: 400px;
    width: 85%;
    background: #ffffffd9;
    padding: 40px 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    perspective: 2700px;
    border-radius: 7px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login .cover {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 50%;
    z-index: 98;
    transition: all 1s ease;
    transform-origin: left;
    transform-style: preserve-3d;
}

.login #flip:checked~.cover {
    transform: rotateY(-180deg);
}

.login .cover .front,
.login .cover .back {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.cover .back {
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.login .cover::before,
.login .cover::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 12;
}

.login .cover::after {
    opacity: 0.3;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.login .cover img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 10;
}

.login .cover .text {
    position: absolute;
    z-index: 130;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cover .text .text-1,
.cover .text .text-2 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.cover .text .text-2 {
    font-size: 15px;
    font-weight: 500;
}

.login .forms {
    height: 100%;
    width: 100%;
}

.my-profile .sidebar-title,
.forms .form-content .title {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #333;
    border: none;
    text-align: start;
}

.my-profile .sidebar-title:before,
.forms .form-content .title:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0;
    height: 3px;
    width: 25px;
    background: var(--salmon-pink);
}

.forms .signup-form .title:before {
    width: 20px;
}

.forms .form-content .input-boxes {
    margin-top: 30px;
}

.forms .form-content .input-box {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.forms .form-content .input-box img {
    position: absolute;
    height: 22px;
}

.form-content .input-box input {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    padding: 0 30px !important;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: transparent;
}

.form-content .input-box input:focus {
    border-color: var(--salmon-pink);
}

.form-content .input-box object {
    position: absolute;
    height: 22px;
}

.forms .form-content .text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.forms .form-content .text a {
    text-decoration: none;
    color: var(--salmon-pink);
}

.forms .form-content .text a:hover {
    text-decoration: underline;
}

.forms .form-content .button {
    color: #fff;
    margin-top: 40px;
}

.otp {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.otp div {
    width: 45% !important;
}

.forms .form-content .button input {
    color: #fff;
    background: var(--salmon-pink);
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.forms .form-content .button input:hover {
    background: #005a21;
}

.forms .form-content label {
    color: var(--salmon-pink);
    cursor: pointer;
}

.forms .form-content label:hover {
    text-decoration: underline;
}

.forms .form-content .login-text,
.forms .form-content .sign-up-text {
    text-align: center;
    margin-top: 25px;
}

.container.login #flip {
    display: none;
}

.logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%);
    width: 30%;
}

@media (max-width: 730px) {
    body {
        background-image: url(../img/skm-banner-2.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .container.login .cover {
        display: none;
    }
    .form-content .login-form,
    .form-content .signup-form {
        width: 100%;
    }
    .form-content .signup-form {
        display: none;
    }
    .login #flip:checked~.forms .signup-form {
        display: block;
    }
    .login #flip:checked~.forms .login-form {
        display: none;
    }
    .forms .form-content .button input,
    .form-content .input-box input {
        font-size: 14px;
    }
    .forms .form-content .login-text,
    .forms .form-content .sign-up-text,
    .forms .form-content .text a {
        font-size: 12px;
    }
    .logo {
        width: 70%;
    }
}

input {
    width: 100%;
    height: 45px;
    outline: 0;
    padding: 10px 20px !important;
}

input:focus {
    border-bottom-color: #1b9c4a;
}

.input-box .fal {
    position: absolute;
    right: 0px;
}

.heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slack {
    display: flex;
    align-items: center;
}

.heading h1 {
    margin-top: 20px;
    color: #454245;
}

.heading h4 {
    margin-top: 20px;
    padding: 0 15px;
}

.heading h4 a {
    color: #454245;
    text-decoration: none;
}

.heading h4 span {
    color: blue;
    cursor: pointer;
}

.social_buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 30px;
}

.social_buttons button {
    margin-top: 20px;
    cursor: pointer;
    background-color: #fff;
}

.social_buttons button:nth-child(1) {
    width: 100%;
    height: 45px;
    padding: 0px 25px;
    border-radius: 5px;
    border: 2px solid #4285f4;
    color: #4285f4;
    font-weight: 600;
    font-size: 14px;
}

.social_buttons button:nth-child(2) {
    width: 100%;
    height: 45px;
    padding: 0px 25px;
    border-radius: 5px;
    border: 2px solid #1d1c1d;
    color: #1d1c1d;
    font-weight: 600;
    font-size: 14px;
}

.social_buttons button i {
    margin-right: 10px;
}

.input_text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
}

.input_text .email_warn i {
    margin-right: 4px;
    color: red;
}

.d_none {
    display: none !important;
}

.continue {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.continue button {
    width: 100%;
    height: 45px;
    border: none;
    background-color: #1b9c4a;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.5s;
    margin: 0px 5px;
}

.continue button:hover {
    background-color: #005a21;
    cursor: pointer;
}

.last {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    font-size: 15px;
}

.last p {
    color: #6f6e61;
}

.last a {
    color: #1b9c4a;
    margin-top: px;
    text-decoration: none;
}

.tandc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 0 30px;
    font-size: 14px;
    color: #6f6e61;
}

.tandc a:hover {
    color: #1b9c4a;
}

.boxes_div {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.box {
    position: relative;
    text-align: center;
    width: 100%;
}

input#otp {
    width: 100%;
    height: 45px;
    outline: 0;
    font-size: 18px;
    text-align: center;
}

.boxes_div p {
    margin: 0 2px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.social_mail {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0 50px;
    align-items: center;
    position: relative;
}

.social_mail p {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social_mail p img {
    width: 30px;
    margin-right: 5px;
}

.spam {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #904245;
    font-weight: 700;
    padding: 0 40px;
    text-align: center;
    letter-spacing: 1px;
}

.last_spam p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.warning {
    border: 2px solid red !important;
}

.OtpNo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media(max-width=400px) {
    .card {
        width: 320px;
    }
}