@import "buttons.css";

.landingError {
    width: 100%;
}

.landingError .card-link:hover {
    color: #ffffff;
}

.centered-div {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    text-align: center;
    width: 600px;
    max-width: 100%;
    word-wrap: break-word;
}

.desc-txt-1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    overflow-wrap: break-word;
}

.cc-button {
    text-transform: none;
}

.signupBtncls {
    display: inline-block;
}

:root {
    --bs-border-color: #8A8A8A;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--bs-border-color);
}

.cc-text-link,
.cc-text-link:hover {
    color: #F40000;
    text-decoration: none;
    font-size: 12px;
}

input.cc-subheader-secondary,
.cc-body-tertiary {
    color: #8A8A8A;
}

label.cc-subheader-secondary {
    color: #18181A;
}

.loginWrapper .card-body {
    padding: 2rem 6rem;
}

.loginBgCover {
    position: relative;
    padding: 7rem 2rem 3rem 2rem;
    background-position: right;
    background-repeat:no-repeat;
    background-size: cover;
    height: 820px;
}

.loginBgCover a.card-link:hover {
    color: #ffffff;
}

.loginBgCover a.card-link {
    color: #ffffff;
}

.card{
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    font-family: "TCCC-UnityHeadline", sans-serif;
}

.card-img-wrap {
    height: 100%;
    position: relative;
}

.loginWrapper .intro,
.loginWrapper .divider {
    display: none;
}

.loginWrapper .create{
    border-top: 1px solid #8A8A8A;
    margin-top: 24px;
    padding-top: 24px;
}

.entry-item {
    margin-bottom: 1rem;
}

.entry-item label {
    margin-bottom: .5rem;
}

.rememberMe {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-bottom: 20px;
}

.rememberMe label {
    order: 0;
}

#forgotPassword {
    font-size: 14px;
    display: block;
    margin:1rem 0 1.5rem 0;
    font-family: "TCCC-UnityHeadline", sans-serif;
    font-weight: 600;
    color: #000000;
}

.error p {
    margin-bottom: 0.5rem;
    font-size: 8px;
    color: red;
    font-family: "TCCC-UnityHeadline", sans-serif;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

#password {
    padding: 6px 42px 6px 6px;
}

.showHidePW {
    background-position: right 10px center;
    background-repeat: no-repeat;
    height: 15px; width: 32px;
    top: -44px;
    position: relative;
    float: right;
    cursor: pointer;
}

.showHidePW_mob {
    background-position: right 10px center;
    background-repeat: no-repeat;
    height: 15px; width: 32px;
    top: -25px;
    position: relative;
    float: right;
    cursor: pointer;
}

.showPW {
    background-image: url(../images/eye-open-1.svg);
}

.hidePW {
    background-image: url(../images/eye-closed-1.svg);
}

.contactPanel{
    padding: 12px 16px;
    background-color: #FFFFFF;
    margin-top: 32px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}

.card-block{
    position: absolute;
    bottom: 0;
}

.bodyLogo {
    margin-bottom: 8px;
}

.card-title{
    margin-bottom: 1.5rem;
    line-height: 48px;
}

.entry-item input{
    border-radius: 4px;
}

.create p{
    margin: 0;
}

#createAccount{
    margin-top: 15px;
    text-decoration: none;
}

#MyCoke360Exchange{
    display: none;
}
.accountButton {
    margin-top: 24px;
}

#MagicLinkExchange {
    background-color: #FFFFFF;
    padding: 8px 16px;
}

#MagicLinkExchange img {
    width: 24px; height: 24px;
}


.magicLinkBtnTxt {
    width: 100%;
}

.magicLinkTxt {
    margin-top: 8px;
}

.rememberMe input { 
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    border: 0;
    outline: 0;
    cursor: pointer;
    order: 1;
}

 /* To create surface of toggle button */
.rememberMe input:after {
	content: '';
	width: 51px;
	height: 31px;
	display: inline-block;
	background: #78788029;
	border-radius: 18px;
	clear: both;
}

/* Contents before checkbox to create toggle handle */
.rememberMe input:before {
	content: '';
	width: 27px;
	height: 27px;
	display: block;
	position: absolute;
	left: 2px;
	top: 2px;
    border-radius: 100px;
    background: #FFF;
    box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.06), 0px 3px 8px 0px rgba(0, 0, 0, 0.15), 0px 0px 0px 1px rgba(0, 0, 0, 0.04);
}

/* Shift the handle to left on check event */
.rememberMe input:checked:before {
	left: 22px;
}
/* Background color when toggle button will be active */
.rememberMe input:checked:after {
	background: #34C759;
}

/* Transition for smoothness */
.rememberMe input,
.rememberMe input:before,
.rememberMe input:after,
.rememberMe input:checked:before,
.rememberMe input:checked:after {
	transition: ease .3s;
	-webkit-transition: ease .3s;
	-moz-transition: ease .3s;
	-o-transition: ease .3s;
}

.iOS .rememberMe input, .iOSDevice .rememberMe input{
    margin-right: 36px;
}

.noniOS .rememberMe input, .noniOSDevice .rememberMe input{
    margin-right: 0;
}

.iOS .rememberMe label, .iOSDevice .rememberMe label{
    margin-top: 12px;
}

.rememberMe::after {
    display: block;
    clear: both;
    content: "";
}

.signupBtncls {
    margin-bottom: 1rem;
    text-decoration: none;
}

a.signupBtncls:hover {
    margin-bottom: 1rem;
    text-decoration: none;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .loginWrapper .card-body {
        padding: 2rem 4rem;
    }
}

@media (max-width: 1024px) {

    .loginWrapper .card-body, .loginBgCover{
        padding: 2rem 2rem 2rem 2rem;
}

    .card-block{
        position: absolute;
        bottom: 0;
    }

    #createAccount {
        width: 100%;
    }

    }

@media (max-width: 767px){
    .loginWrapper .card-body, .loginBgCover{
        padding: 2rem;
    }

    .loginBgCover{
        display: none;
    }

    .card-img-wrap{
        padding-top: 0;
    }

    #createAccount{
        border:1px solid #18181A;
    }

    .card-block{
        position: static;
        bottom: 0;
        font-size: 20px;
    }
    .cc-body-tertiary{
        font-size: 8px;
    }

    .contactPanel{
        padding: 16px;
    }
}

@media (max-width: 480px){
    .loginWrapper .card-body{
        padding: 1rem;
    }

    #forgotPassword{
        float: left;
    }

    .contactPanel a{
        display: block;
        margin-top: 15px;
        justify-self: center;
    }

    #forgotPassword{
        margin-bottom: 1rem;
    }
}

@media (max-width: 376px){
    .cc-header-small {
        font-size: 14px;
    }

    .card-title{
        font-size: 26px;
    }
}

@media (max-width: 320px){
    .card-title{
        font-size: 22px;
    }
}

.login-error {
    font-size: 12px;
    color: #B30000;
    line-height: 16px;
    font-family: "TCCC-UnityText", sans-serif;
}

.login-error a {
    color: #B30000;
    font-weight: 400;
}

input.error-input {
    border: 1px solid #F40000;
}