



.ca-login-background {
    /* background: rgb(95,212,254); */
    /* background: linear-gradient(339deg, rgba(95,212,254,1) 0%, rgba(40,158,254,1) 75%); */
    background: rgb(114,158,173);
    background: linear-gradient(339deg, rgba(114,158,173,1) 0%, rgba(175,196,213,1) 75%);
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Noto-Sans", sans-serif;
    overflow: auto; /* Ensures horizontal scrolling */
}

.ca-login-outer {
    padding: 4px;
    width: 415px;
    margin: 0 auto;
    align-items: center;
    font-family: "Noto-Sans", sans-serif;
}
.login-outer-link {
    display: flex;
    justify-content: center;
    margin: 12px;
}
.login-outer-link a {
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    opacity: 1;
    color: black;
    letter-spacing: .1em;
    transition: all 150ms linear;
    text-shadow: none;
}
.login-outer-link:hover a {
    text-decoration: none;
    text-shadow: 0px 0px 3px rgba(255,255,255,.7);
}

.ca-login-inner {
    margin: 4px;
    padding: 20px;
    /* background: rgb(219,211,229);
    background: linear-gradient(133deg, rgba(219,211,229,0.6) 37%, rgba(215,207,228,0.7) 100%); */
    background: rgb(37,37,37);
    background: linear-gradient(51deg, rgba(37,37,37,1) 0%, rgba(18,54,60,1) 100%);
    border: 2px solid rgba(255,255,255,.1);
    display: flex;
    flex-direction: column;
    height: 500px;
    border-radius: 34px;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
}

.ca-register-container {
    width: 600px;
    /* background: rgb(219,211,229);
    background: linear-gradient(133deg, rgba(219,211,229,0.6) 37%, rgba(215,207,228,0.7) 100%); */
    background: rgb(37,37,37);
    background: linear-gradient(51deg, rgba(37,37,37,1) 0%, rgba(18,54,60,1) 100%);

    border: 2px solid rgba(255,255,255,.1);
    display: flex;
    flex-direction: column;
    border-radius: 34px;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,.25);
    align-items: center;
    min-height: 500px;
    /* height: 100%; */
    padding: 20px;
}
#plans-panel {
    max-height: 800px;
}
.ca-register-container .anvil-measure-this {
    width: 100%;
}
.login-logo {
    display: inline-block;
    position: relative;
    align-items: center;
}
.login-logo img {
    width: 205px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 9px rgba(255,255,255,.2));
    padding: 40px 0px;
}
.login-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Make it unclickable */
}
.login-input-container {
    left: 50%;
    align-items: center;
    margin: 0 auto;
    color: white;
}
.login-user-form {
    width: 100%;
}

.login-user-form .login-label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    width: 80%;
    text-align: left;
    letter-spacing: 1px;
}

.login-user-form .login-input-field {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.7);
    transition: all 150ms ease;
    color: black;
}

#login-remember-me {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
#login-remember-me input {
    margin-left: 8px;
    margin-bottom: 8px;
}

#login-login-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

#login-login-btn button {
    width: 60%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background-color: #289EFE;
    color: black;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 150ms ease;
}
#login-login-btn button:hover {
    background-color: #5FD4FE;
}



@media only screen and (max-width: 1200px) {
    .ca-register-container {
        width: 90%;
        min-width: 0; /* Allow container to shrink on small viewports */
    }
    #signup-logo-container {
        display: none;
    }
}
@media only screen and (max-width: 1600px) {
    #signup-recommended-label {
        display: none;
    }
}




.anvil-role-signup-step-breadcrumb {
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 150ms ease-in-out;
    text-shadow: none;
    background: transparent;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
}
.anvil-role-signup-step-breadcrumb:hover {
    text-shadow: 0px 0px 2px rgba(255,255,255,.2);
}
.anvil-role-signup-step-breadcrumb[completed] {
    color: rgba(29,225,255,1);
    cursor: context-menu;
}
.anvil-role-signup-step-breadcrumb[selected] {
    background: rgba(255,255,255,.6);
    color: #191C1D;
}
