
body {
    font-family: Nunito Sans, Helvetica, sans-serif;
    background-color: #ffffff;
    font-size:17px;
    /* margin: 0 8px !important; */
}


.signup-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 30px 0;
    margin-bottom: 0;
}

.logo-container {
    text-align: center;
    color: white;
}

.company-logo {
    height: 100px;          /* Set specific height */
    width: auto;           /* Auto width to maintain aspect ratio */
    max-width: 250px;      /* Maximum width constraint */
    margin-bottom: 15px;
    object-fit: contain;   /* Maintains aspect ratio */
    /* background: white; */
    padding: 10px;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

/* Alternative: If you want to set both width and height */
.company-logo-fixed {
    height: 80px;
    width: 200px;
    margin-bottom: 15px;
    object-fit: contain;   /* or 'cover' to fill the entire area */
    /* background: white; */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .company-logo {
        height: 60px;      /* Smaller on mobile */
        max-width: 180px;
    }
}

.logo-icon {
    font-size: 48px;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.logo-text {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}

.signup-container {
    background: white;
    padding: 60px 40px;
    text-align: center;
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signup-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 400;
}

.form-container {
    margin: 0 auto;
    max-width: 90%;
}

/* form {
    width: 90%;
} */

.form-group {
    margin-bottom: 25px;
    text-align: left;
    width: 400px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #74b9ff;
    box-shadow: 0 0 0 3px rgba(116, 185, 255, 0.1);
}

.btn-primary-custom {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.footer-info {
    margin-top: 50px;
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #95a5a6;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
}

.footer-links a:hover {
    color: #2c3e50;
}

.error-alert {
    background-color: #ff7675;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Email Confirmation Styles */
.confirmation-container {
    background: white;
    padding: 60px 40px;
    text-align: center;
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.email-icon {
    font-size: 80px;
    color: #74b9ff;
    margin-bottom: 30px;
}

.confirmation-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 400;
}

.confirmation-subtitle {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 10px;
}

.email-address {
    font-size: 20px;
    color: #74b9ff;
    font-weight: 600;
    margin-bottom: 30px;
}

.confirmation-text {
    color: #636e72;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.footer-text {
    color: #95a5a6;
    font-size: 14px;
    margin-top: 40px;
}

.footer-text a {
    color: #74b9ff;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .signup-container,
    .confirmation-container {
        padding: 40px 20px;
    }
    
    .signup-title,
    .confirmation-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .form-container {
        max-width: 100%;
    }
    
    .email-icon {
        font-size: 60px;
    }

    .form-group {
        margin-bottom: 25px;
        text-align: left;
        width: 100%;
    }
}

a {
    color: #95a5a6;  /* Grey color for all links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* Sign in page */

.form-label {
    color: white !important;
}


.form-label2 {
    display: block;
    margin-bottom: 8px;
    color: rgb(85, 85, 85);
    font-size: 14px;
    font-weight: 500;
}

.oe_website_login_container {
    margin-top: -10px !important;
}

.oe_login_buttons, button {
    color: white !important;
    background-color:transparent !important;

}

.o_user_switch_btn {
   display: none !important;
}

#bg-dark-blue {
    background-color: #02222b;
    min-height: 500px;
}

#white-logo {
    max-width: 203px;
    padding-top: 7%;
    padding-bottom: 0;
}

#bg-ring {
    background-image: url(/signup_email_verification/static/description/ring-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
}

.row {
    --bs-gutter-x: 0 !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}


.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.text-center {
    text-align: center !important;
}

.footer .row.section-1 .center-button a {
    background-color: #11444d;
}