/* Professional login/signup redesign */
.pro-login-bg {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3eafc 0%, #43e97b 100%);
}
.pro-login-container {
    width: 100%;
    max-width: 420px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pro-login-brand {
    text-align: center;
    margin-bottom: 24px;
}
.pro-login-brand h2 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0171d3;
    margin: 0;
}
.pro-login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 32px 28px;
    width: 100%;
}
.pro-login-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.tab-btn {
    background: #f3f6fa;
    border: none;
    border-radius: 6px 6px 0 0;
    padding: 10px 32px;
    font-size: 1rem;
    font-weight: 500;
    color: #0171d3;
    cursor: pointer;
    transition: background 0.2s;
}
.tab-btn.active {
    background: #fff;
    color: #232836;
    font-weight: 700;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}
.tab-content {
    display: block;
}
.tab-content h3 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0171d3;
    margin-bottom: 18px;
    text-align: center;
}
.field.input-field input {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #CACACA;
    margin-bottom: 12px;
}
.field.button-field button {
    background: #0171d3;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 12px 0;
    border: none;
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(67,233,123,0.08);
    transition: background 0.2s;
}
.field.button-field button:hover {
    background: #43e97b;
    color: #232836;
}
.form-link {
    text-align: center;
    margin-top: 10px;
}
.form-link a {
    color: #0171d3;
    font-weight: 500;
    text-decoration: none;
}
.form-link a:hover {
    text-decoration: underline;
}
@media (max-width: 500px) {
    .pro-login-card {
        padding: 18px 6px;
    }
    .pro-login-brand h2 {
        font-size: 1.2rem;
    }
}
/* Oracle.com inspired login/signup redesign */
.oracle-login-bg {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3eafc 0%, #43e97b 100%);
}
.oracle-login-container {
    width: 100%;
    max-width: 420px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.oracle-login-brand {
    text-align: center;
    margin-bottom: 24px;
}
.oracle-login-brand h2 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0171d3;
    margin: 0;
}
.oracle-login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 32px 28px;
    width: 100%;
}
.oracle-login-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.tab-btn {
    background: #f3f6fa;
    border: none;
    border-radius: 6px 6px 0 0;
    padding: 10px 32px;
    font-size: 1rem;
    font-weight: 500;
    color: #0171d3;
    cursor: pointer;
    transition: background 0.2s;
}
.tab-btn.active {
    background: #fff;
    color: #232836;
    font-weight: 700;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}
.tab-content {
    display: block;
}
.tab-content h3 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0171d3;
    margin-bottom: 18px;
    text-align: center;
}
.field.input-field input {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #CACACA;
    margin-bottom: 12px;
}
.field.button-field button {
    background: #0171d3;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 12px 0;
    border: none;
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(67,233,123,0.08);
    transition: background 0.2s;
}
.field.button-field button:hover {
    background: #43e97b;
    color: #232836;
}
.form-link {
    text-align: center;
    margin-top: 10px;
}
.form-link a {
    color: #0171d3;
    font-weight: 500;
    text-decoration: none;
}
.form-link a:hover {
    text-decoration: underline;
}
@media (max-width: 500px) {
    .oracle-login-card {
        padding: 18px 6px;
    }
    .oracle-login-brand h2 {
        font-size: 1.2rem;
    }
}
/* Oracle.com inspired login/signup redesign */
.login-oracle-bg {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3eafc 0%, #43e97b 100%);
}
.login-oracle-container {
    width: 100%;
    max-width: 420px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-oracle-brand {
    text-align: center;
    margin-bottom: 24px;
}
.login-oracle-brand h2 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0171d3;
    margin: 0;
}
.login-oracle-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 32px 28px;
    width: 100%;
}
.login-oracle-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.tab-btn {
    background: #f3f6fa;
    border: none;
    border-radius: 6px 6px 0 0;
    padding: 10px 32px;
    font-size: 1rem;
    font-weight: 500;
    color: #0171d3;
    cursor: pointer;
    transition: background 0.2s;
}
.tab-btn.active {
    background: #fff;
    color: #232836;
    font-weight: 700;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}
.tab-content {
    display: block;
}
.tab-content h3 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0171d3;
    margin-bottom: 18px;
    text-align: center;
}
.field.input-field input {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #CACACA;
    margin-bottom: 12px;
}
.field.button-field button {
    background: #0171d3;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 12px 0;
    border: none;
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(67,233,123,0.08);
    transition: background 0.2s;
}
.field.button-field button:hover {
    background: #43e97b;
    color: #232836;
}
.form-link {
    text-align: center;
    margin-top: 10px;
}
.form-link a {
    color: #0171d3;
    font-weight: 500;
    text-decoration: none;
}
.form-link a:hover {
    text-decoration: underline;
}
@media (max-width: 500px) {
    .login-oracle-card {
        padding: 18px 6px;
    }
    .login-oracle-brand h2 {
        font-size: 1.2rem;
    }
}
/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
}
.container{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4070f4 60%, #43e97b 100%);
    gap: 40px;
    overflow-y: auto;
}
.form{
    position: relative;
    margin-bottom: 0;
    max-width: 430px;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.form.signup{
    border: none;
    background: #fff;
    display: block;
}
.forms.show-signup .form.signup{
    /* no-op, JS controls display */
}
.forms.show-signup .form.login{
    /* no-op, JS controls display */
}
header{
    font-size: 28px;
    font-weight: 600;
    color: #232836;
    text-align: center;
}
form{
    margin-top: 30px;
}
.form .field{
    position: relative;
    /* allow children to size naturally while keeping a minimum height */
    min-height: 50px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
}
.field input,
.field button{
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}
.field input{
    outline: none;
    /* leave extra right padding to avoid overlap with the toggle button */
    padding: 0 44px 0 15px;
    border: 1px solid #CACACA;
    /* ensure input text appears above surrounding controls */
    position: relative;
    z-index: 2;
    background: #fff;
}
.field input:focus{
    border-bottom-width: 2px;
}
.eye-icon{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}
/* Visible button fallback for password toggle (SVG) */
.eye-toggle{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: transparent !important;
    border: none !important;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #8b8b8b;
    /* ensure the toggle does not inherit full-width button styles */
    width: 34px;
    height: 34px;
    box-sizing: content-box;
    z-index: 4;
}
.eye-toggle svg{ width: 18px; height: 18px; display: block; }
.eye-toggle:focus,
.eye-toggle:focus-visible,
.eye-toggle:active{
    /* remove any visible focus chrome around the icon as requested */
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
.field button{
    color: #fff;
    background-color: #0171d3;
    transition: all 0.3s ease;
    cursor: pointer;
}
.field button:hover{
    background-color: #016dcb;
}
/* Stronger override to prevent the toggle button inheriting full-width submit styles */
.field .eye-toggle{
    width: 34px;
    height: 34px;
    background: transparent !important;
    border: none !important;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #8b8b8b;
    box-sizing: content-box;
    z-index: 4;
}
.field .eye-toggle svg{ width: 18px; height: 18px; display: block; }
.field .eye-toggle:focus,
.field .eye-toggle:focus-visible,
.field .eye-toggle:active{
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
/* remove any default button chrome (border/box) */
.eye-toggle, .eye-toggle svg{ background: transparent; box-shadow: none; }
.field.button-field button{ position: relative; z-index: 1; }
.form-link{
    text-align: center;
    margin-top: 10px;
}
.form-link span,
.form-link a{
    font-size: 14px;
    font-weight: 400;
    color: #232836;
}
.form a{
    color: #0171d3;
    text-decoration: none;
}
.form-content a:hover{
    text-decoration: underline;
}
.line{
    position: relative;
    height: 1px;
    width: 100%;
    margin: 36px 0;
    background-color: #d4d4d4;
}
.line::before{
    content: 'Or';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    color: #8b8b8b;
    padding: 0 15px;
}
.media-options a{
    display: flex;
    align-items: center;
    justify-content: center;
}
a.facebook{
    color: #fff;
    background-color: #4267b2;
}
a.facebook .facebook-icon{
    height: 28px;
    width: 28px;
    color: #0171d3;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.facebook-icon,
img.google-img{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
img.google-img{
    height: 20px;
    width: 20px;
    object-fit: cover;
}
a.google{
    border: 1px solid #CACACA;
}
a.google span{
    font-weight: 500;
    opacity: 0.6;
    color: #232836;
}

@media screen and (max-width: 400px) {
    .form{
        padding: 20px 10px;
    }
    
}