@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

:root {
    --purple: #65315C;
    --smooth-white: #F6F1ED;
    --black: #181D2E;
    --pink: #ef4a81;
    --blue: #1C2244;
    --light-purple: #A30456;
}

.login-page {
    height: 100%;
}

.login {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: var(--black);
    margin: 0;
}

.login * {
    font-family: 'Poppins', sans-serif;
    transition: all .1s ease-in-out;
}

.login header {
    display: none;
}

.login #page-top {
    display: none;
}

.login .site-footer {
    margin-top: 0;
}

.login .mc-logo-wrapper {
    text-align: center;
}

.login .content-wrapper {
    padding: 0;
}

.login .mc-main-content-area-wrapper {
    min-height: auto;
    flex: 1;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    /* height: 100%; */
    justify-content: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    margin: 0;
}

.login h1 {
    font-size: 40px;
}

.login h2 {
    font-size: 34px;
}

.login h3 {
    font-size: 30px;
}

.login h4 {
    font-size: 18px;
}

/* Generic styles */

.login .bg-dark,
.login .bg-dark * {
    background-color: var(--blue);
    color: var(--smooth-white);
}

.login .mb-40 {
    margin-bottom: 40px;
}

.login .flex-row {
    display: flex;
    flex-direction: row;
}

/* Header */
.login .login-container {
    width: 100%;
    /* max-width: 900px; */
    margin: 0 auto;
}

.login .header {
    background-color: #fff;
    padding: 25px 40px;
}

.login .header .container {
    display: flex;
    justify-content: space-between;
}

.login .header .container .logo {
    max-height: 60px;
}

.login .header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Buttons */
.login .btn-primary {
    padding: 10px 50px;
    background: var(--purple);
    border: 1px solid var(--purple);
    border-radius: 25px;
    color: var(--smooth-white);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
}

.login .btn-primary:hover {
    background-color: #fff;
    text-decoration: underline;
    color: var(--purple);
}

.login .btn-primary:focus {
    text-decoration: underline !important;
}

.login .btn-cta {
    background-color: var(--pink);
    color: var(--smooth-white);
    font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    border: none;
    padding: 10px;
    text-decoration: none;
    border-radius: 15px;
}

.login .btn-cta:hover, .login .btn-primary:hover {
    background-color: var(--smooth-white);
    text-decoration: underline;
    color: var(--pink);
}

.login .btn-cta:focus {
    text-decoration: underline !important;
}


/* Hero section */
.login .hero-section {
    background-image: url(../images/dash-bg-1.jpg);
    background-size: cover;
}

.login .hero-section .container {
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.login .hero-section .container .hero-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.login .hero-section .container .hero-head .hero-logo {
    margin: 40px;
    box-sizing: border-box;
    width: 380px;
}

.login .hero-section .container .hero-head .hero-description {
    color: #fff;
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    max-width: 800px;
    text-align: center;
}

.login .hero-section .container .hero-cta-list {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.login .hero-section .container .hero-cta-list>a {
    width: 30%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* Generic section */
.login section:not(.hero-section) {
    padding: 80px;
}

/* .login section.dark {
    background-color: var(--blue);
    color: white;
} */

.login section .heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.login section .subtitle {
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
}

/* Features grid */
.login .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 80px;
    margin-left: 5%;
}

.login .features-list .feature-item {
    list-style-type: none;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
}

.login .features-list .feature-item .icon {
    color: icon-dark;
    width: 150px;
    aspect-ratio: 1;
    margin-left: -27px;
    margin-bottom: -50px;
}

.login .features-list .feature-item .title {
    color: #00C1D5;
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    margin: 30px 0 20px;
}

.login .features-list .feature-item .content {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
}

@media screen and (min-width: 1350px) and (max-width: 1500px) {
    .login .features-list {
        margin-left: 2.5%;
    }
}

/* Sector tabs layout */
.login .sector-selector .tabs {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
    margin-bottom: 50px;
    padding-top: 5px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--pink);
}

.login .sector-selector .tabs .tab-button {
    border-radius: 15px;
    padding: 20px 10px;
    border: 1px solid var(--pink);
    background: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--pink);
    max-width: 450px;
    width: 100%;
}

.login .sector-selector .healthcare-sector, .login .sector-selector .community-sector,
.login .sector-selector .industry-sector, .login .sector-selector .education-sector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 2rem;
}

.login .publication-icon-wrapper > *:not(img) {
    overflow: hidden;
    align-items: center;
    text-align: center;
}

.login .publication-icon-wrapper img {
    max-width: 100%;
    aspect-ratio: 1;
    width: 185px;
}

.login .pub-description {
    display: none;
    font-size: 14px;    
    padding: 5px;
    color: var(--smooth-white);
}

.login .pub-description-mob {
    font-size: 14px;
    display: block; 
}

.login .pub-description-mob h5 {
    margin-top: 15px; 
}

.login .sector-selector .sector-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 60px;
}

.login .sector-selector p {
    margin-top: 20px;
}

.login .sector-selector :not(.flex-row)>p+p {
    margin-top: 0;
}

.login .sector-selector p.small {
    font-size: 14px !important;
    line-height: 22px;
}

.login .sector-selector .flex-row>p:not(:last-child) {
    padding-right: 40px;
}

.login .sector-selector .tabs .tab-button.active {
    background: var(--pink);
    color: var(--smooth-white);
}

.login .sector-selector .sector-features {
    padding: 30px;
}

.login .sector-selector .sector-features .title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.login .sector-selector .sector-features ul {
    padding-inline-start: 20px;
    font-size: 14px;
}

.login .sector-selector .sector-features ul li {
    margin-bottom: 10px;
}

.login .sector-selector .healthcare-blocks .publications,
.login .sector-selector .education-blocks .publications, 
.login .sector-selector .community-blocks .publications,
.login .sector-selector .industry-blocks .publications {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 0.45rem;
}
.login .products {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
}

.login .see-more-button {
    width: 150px;
    border-radius: 25px;
    margin: 50px auto 0;
    display: block;
    padding: 7px;
    font-size: 18px;
    font-weight: 500;
}

.login .subtitle ul {
    text-align: center;
    list-style: inside;
    padding-inline-start: 0;
}

.login .signup-newsletter {
    background-color:#EAEDF4;
    padding: 40px 0;
    text-align: center;
}

.login .signup-newsletter div {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.login .signup-newsletter input {
    width: 400px;
    height: 40px;
    border: 1px solid #CED4DA;
    border-radius: 5px 0 0 5px;
    padding: 10px;
}

.login .signup-newsletter button {
    height: 40px;
    border: 1px solid #CED4DA;
    border-radius: 0 5px 5px 0;
    border-left: none;
    background-color: #F8F9FA;
    color: #393939;
    font-weight: 600;
}

.login .signup-newsletter button:hover {
    background-color: #CED4DA;
}

.login .disablelinks {
    cursor: auto;
}
.see-more-button, .see-more-button:focus {
    border: 1px solid var(--pink);
}
.login .link {
    color: var(--pink);
    border-bottom: 1px solid var(--pink);
    font-weight: bold;
}
.login .link:hover, .login .link:focus {
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
}
.see-more-button,.login .btn-primary, .see-more-button, .see-more-button:focus {
    background-color: var(--pink);
    color: var(--smooth-white);
}
.see-more-button:hover {
    color: var(--pink);
    background-color: var(--smooth-white);
}
.login .btn-primary {
    border: 1px solid var(--pink);
}
.login .products .publication-icon-wrapper:hover > span {
    display: block;
    width: 100%;
}

@media screen and (min-width: 1025px) {
    .login .products > span {
        width: 100%;
        height: 100%;
    }

    .login .publication-icon-wrapper {
        max-width: 100%;
        border-radius: 50%;
    }

    .login .publication-icon-wrapper:hover {
        transform: scale(1.05); 
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .login .products .publication-icon-wrapper:hover {
        background-color: var(--blue);
    }

    .login .products .publication-icon-wrapper:hover > img {
        display: none;
    }

    .login .trust-signals {
        /* background-image: linear-gradient(230deg, #EAEDF4 90%, #D0FFA3 94%); */
        border-top: 2px solid #C6D1F8;
        background: #EAEDF4;
        padding: 50px 0;
        display: flex;
        justify-content: space-evenly;
    }
    
    .login .trust-signals > div {
        flex: 1;
        text-align: center;
        padding: 20px;
    }

    .login .trust-signals > div:not(:last-child) {
        border-right: 0.5px solid #00677F;
    }
    
    .login .trust-signals .count {
        color: #00677F;
        font-weight: 600;
        font-size: 60px;
    }
    
    .login .trust-signals .label {
        color: #1E1E1E;
        font-size: 20px;
    }
    .login .hero-section .container .hero-head .hero-logo {
        margin: 60px;
    }
    .login .hero-section .container .hero-cta-list {
        margin-top: 60px;
    }
    .login .hero-section .container {
        padding-bottom: 60px;
    }
    .login .sector-selector .sector-left p {
        font-size: 24px;
    }
    .login .mc-products-section .sector-selector .tabs {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 3rem;
    }

}

@media screen and (min-width: 1366px) {    
    .login .products .publication-icon-wrapper:hover {
        width: 185px; 
    }
}

@media screen and (max-width: 1024px) {
    .login .products {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .login .products > span {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .login .products > span:nth-child(even) {
        border-left: 0.5px solid #1C2244;
        padding-left: 25px;
    }

    .login .publication-icon-wrapper {
        width: 165px;
        height: 165px;
    }

    .login .trust-signals {
        /* background-image: linear-gradient(230deg, #EAEDF4 90%, #D0FFA3 94%); */
        border-top: 2px solid #C6D1F8;
        background: #EAEDF4;
        padding: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .login .trust-signals > div {
        flex: 1;
        text-align: center;
        padding: 20px;
    }

    .login .trust-signals > div:first-child {
        border-right: 1px solid #00677F;
        border-bottom: 1px solid #00677F;
    }

    .login .trust-signals > div:last-child {
        border-top: 1px solid #00677F;
        border-left: 1px solid #00677F;
        margin-left: -1px;
        margin-top: -1px;
    }
    
    .login .trust-signals .count {
        color: #00677F;
        font-weight: 700;
        font-size: 24px;
    }
    
    .login .trust-signals .label {
        color: #1E1E1E;
        font-size: 16px;
    }
    .mobile-sector-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 0.5rem;
        row-gap: 1rem;
    }
    .mobile-sector-section > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-sector-section > div:last-child {
        padding-left: 25px;
        border-left: 0.5px solid #1C2244;
    }

    .mobile-sector-section h1 {
        width: 100%;
    }
    

    .login .sector-selector .healthcare-sector, .login .sector-selector .community-sector,
    .login .sector-selector .industry-sector, .login .sector-selector .education-sector {
        display: block;
        padding: 0px 10px 0px 10px;
    }
    .login .sector-selector .sector-left {
        padding-right: 10px;
    }
    .login .publication-icon-wrapper {
        margin-bottom: 10px;
    }
    .login h1 {
        font-size: 25px;
    }

    .login .sector-selector .tabs {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 0.5rem;
    }
    .login .sector-selector .tabs .tab-button {
        width: 90%;
    }
}

@media screen and (max-width: 400px) {
    .login .publication-icon-wrapper {
        width: 120px;
        height: 120px;
    }
}

@media screen and (max-width: 500px) {
    .login .trust-signals {
        padding: 20px;
    }

    .login .trust-signals .label {
        font-size: 14px;
    }
    .login .btn-primary {
        font-size: 14px;
        padding: 5px 30px;
    }
    .login-vue-select {
        margin: 0 auto 35px;
    }
    .mobile-sector-section h1 {
        font-size: 18px;
    }
    .login .hero-section .container .hero-head .hero-description {
        font-size: 15px;
        max-width: 700px;
    }
}

.login .border-right {
    border-right: 0.5px solid #00677F;
}

/* old styles */
.login .login-container .mc-logo-wrapper img {
    width: 300px;
    height: auto;
}

.action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.action-button {
    color: white;
    font-size: 18px;
    padding: 20px 35px;
    margin: 10px 15px;
    border-radius: 4px;
    width: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-button:hover {
    color: white;
    opacity: .9;
}

.action-button:visited {
    color: white;
}

.action-button:nth-child(1) {
    background: #6c2776;
}

.action-button:nth-child(2) {
    background: #00677F;
}

.action-button:nth-child(3) {
    background: #0D5945;
}

@media screen and (max-width:768px) {
    .login .mc-logo-wrapper img {
        width: 100%;
        padding: 0 20px;
    }

    .action-buttons {
        flex-direction: column;
    }
}
/*Login page related mobile supportive css here */
/*Media query to support maximum width 1023 */
@media screen and (max-width: 1023px) {
    .login .features-list {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 45px;
    }
    .login section:not(.hero-section) {
        padding: 40px;
    }
    .login h1 {
        font-size: 20px;
    }
    .login section .subtitle {
        font-size: 16px;
    }
    .login .features-list .feature-item .icon {
        width: 120px;
        margin-left: -21px;
    }
    .login .features-list .feature-item .title {
        font-size: 18px;
        margin: 15px 0 10px;
    }
    .login section.bg-dark .heading {
        margin-bottom: 15px;
    }
}
@media  screen and (max-width: 700px) {
    .login .hero-section .container .hero-head .hero-description {
        font-size: 25px;
    }
}
/*Media query to support maximum width 650 */
@media screen and (max-width: 650px) {
    .login .hero-section .container .hero-cta-list>a {
        width: 65%;
        padding-left: 65px;
        padding-right: 80px;
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 30px; 
    }
    .login .header {
        padding: 25px 5px;
    }
    .login nav .btn-primary {
        padding: 7px 30px;
    }
    .login .hero-section .container .hero-head .hero-logo {
        width: 300px;
    }
    .login .hero-section .container .hero-head .hero-description {
        font-size: 20px;
        line-height: 30px;
        max-width:650px;
    }

    .login .signup-newsletter div {
        margin: 20px 15px 0 15px;
    }

    .login .signup-newsletter h3 {
        font-size: 24px;
    }
    
    .login .signup-newsletter input {
        width: 300px;
    }

    .login section:not(.hero-section) {
        padding: 20px;
    }
}
/*Media query to support maximum width 550 */
@media screen and (max-width: 550px) {
    .login .header .container .logo {
        max-width: 250px;
    }
    .login section:not(.hero-section) {
        padding: 25px 0px 25px 0px;
    }
    .login h1,.login section .subtitle,
    .login .features-list .feature-item .title,
    .login .features-list .feature-item .content,
    .login p {
        font-size: 14px;
        line-height: 23px;
    }
    .login .mb-40, .login section .heading {
        margin-bottom: 25px;
    }
    .login .features-list .feature-item .icon {
        width: 100px;
        margin-left: -17px;
        margin-bottom: -40px;
    }
    .login .hero-section .container .hero-head .hero-description {
        font-size: 16px;
        max-width: 700px;
    }
}
/*Media query to support maximum width 400 */
@media screen and (max-width: 400px) {
    .login .header .container .logo {
        max-width: 185px;
    }
    .login .hero-section .container .hero-head .hero-logo {
        width: 200px;
    }
    .login .hero-section .container .hero-head .hero-description {
        font-size: 13px;
        line-height: 20px;
        max-width:400px;
    }
    .login .hero-section .container .hero-cta-list>a {
        font-size: 15px;
        line-height: 20px;
    }

    .login .signup-newsletter h3 {
        font-size: 18px;
    }

    .login .signup-newsletter input {
        width: 220px;
    }
}
/*Media query to support maximum width 350 */
@media screen and (max-width: 350px) {
    .login .header {
        padding: 25px 5px;
    }
    .login .header .container .logo {
        max-width: 155px;
    }
    .login nav .btn-primary {
        padding: 7px 30px;
    }
}
/*Login page message card css here*/
.login-message-card img{
	width: 35px;
	height: 35px;
	margin-right: 10px;
	margin-top: 2px;
}

.login-message-card-text {
	padding-right: 35px
}
.login-card {
	max-width: 980px;
    margin: 30px 0 24px;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0px 2px 25px 0px rgba(0,0,0,0.05);
    background-color: rgba(255, 255, 255, 0.65);
    box-sizing: border-box;
}

@media screen and (max-width: 480px){
	.login-card{
		margin: 24px 5px 24px 5px;
	}
}

/**** Vue Select styles starts ****/

.login-vue-select {
    max-width: 400px;
    margin: 0 auto 50px;
}

.login-vue-select .vs__selected {
    color: #F6F1ED;
}

.login-vue-select .vs__dropdown-menu {
    border: 1px solid #A30456;
    border-radius: 10px;
    margin-top: 10px;
}

.login-vue-select .vs__dropdown-menu li {
    padding: 20px 0 10px 20px;
    text-decoration: underline;
}

.login-vue-select .vs__open-indicator {
    transform: rotate(270deg) scale(1.5) !important;
}

.login-vue-select.vs--open .vs__open-indicator {
    transform: rotate(360deg) scale(1.5) !important;
}

.login-vue-select.vs--open .vs__dropdown-toggle {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.login-vue-select.vs--single.vs--open .vs__selected {
    position: unset;
}

.login-vue-select .vs__actions > .vs__clear {
    display: none;
}

.login-vue-select .vs__search {
    display: none;
}

.login-vue-select .vs__actions > .vs__open-indicator {
    fill: #F6F1ED;
}

.login-vue-select .vs__dropdown-menu {
    font-size: 24px;
    background: #ffffff;
}

.login-vue-select .vs__dropdown-toggle {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    background: var(--pink);
    color: var(--smooth-white);
    border: 1px solid var(--pink);
    border-radius: 5px;
    padding: 15px;
} 

@media screen and (max-width: 1024px) {	
    .login-vue-select .vs__dropdown-toggle,
    .login-vue-select .vs__dropdown-menu {
		font-size: 20px;
	}
}

@media screen and (max-width: 350px) {
    .login-vue-select .vs__dropdown-toggle,
    .login-vue-select .vs__dropdown-menu {
		font-size: 18px;
	}
}
/**** Vue Select styles ends ****/

.login .content-wrapper.unsupported .login-message-card.login-card {
    display: block !important;
}
.login .desktop .pub-description-mob,
.login .unsupported .header-login-btn, 
.login .unsupported .login-body-section   {
    display: none;
}