﻿body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fb;
}

.MainContain {
    background-color: #f0f7f5;
    min-height: auto;
    justify-content: center;
    align-items: center;
    /*padding: 20px;*/
}

/* ==================== Header Section ======================== */
.Header {
    display: flex;
    justify-content: space-between; /* Space between logo/text and buttons */
    align-items: center; /* Vertically center the content */
    /*padding: 20px 40px;*/
    background-color: #ffffff; /* White background for the header */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    margin-bottom: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Logo */
.Header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0fa75c;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 50px;
}

.Header-logo i {
    font-size: 32px;
    color: #4CAF50; /* Icon color */
}

.Header-logo svg {
    color: white;
    width: 30px;
    height: 30px;
}

/* Text Section (Title and Subtitle) */
.Header-texts {
    flex: 1; /* Allow this section to take available space */
    margin-left: 10px; /* Space between logo and texts */
    margin-top: 10px;
}

.Header-texts h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333; /* Dark text color for title */
    margin: 0;
}

.Header-texts p {
    font-size: 14px;
    color: #757575;
    margin: 0 0 10px;
}

/* Buttons Section (Align buttons to the right) */
.submit-button-container {
    display: flex;
    justify-content: flex-end; /* Align buttons to the right */
    gap: 10px; /* Adds space between the buttons */
    margin-right: 50px;
}

/* Button */
.submit-button {
    padding: 3px 3px;
    background-color: #f2f2f2; /* Green for "Save Company" */
    color: black;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    width: 110px !important;
}

.submit-button:hover {
    background: #99A1AF !important;
}

/* Disabled button styling */
.submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.submit-button svg {
    width: 15px;
    height: 15px;
    cursor: default !important;
}

.submit-button i {
    width: 16px !important;
    height: 16px !important;
    cursor: default !important;
}

.lucideIcons {
    width: 15px;
    height: 15px;
    cursor: default !important;
}

/*============================= Form ==============================*/

.form-row {
    display: flex;
    gap: 20px; /* space between the two divs */
    justify-content: center; /* center horizontally */
    align-items: stretch;
    flex-wrap: wrap; /* wrap on smaller screens */
}

/* Card container */
.form-container {
    flex: 1 1 400px; /* grow, shrink, base width 400px */
    min-width: 300px;
    gap: 20px;
    max-width: 420px; /* optional, keep same width */
    margin: 24px auto;
    width: 100%; /* allows flex to shrink/grow */
    /*padding: 10px 30px 10px 30px;*/
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.form-container-border {
    max-width: 420px;
    width: 100%;
    margin: 30px auto;
    padding: 30px; /* optional: adjust padding if you want less */
    border: 1px solid #E5E5E5; /* only border */
    border-radius: 16px;
    background: transparent; /* no background */
    box-shadow: none; /* remove shadow */
}

/* Heading */
.form-container h2 {
    text-align: center;
    font-weight: 400;
    margin-bottom: 0px;
}

.form-container p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 13px;
}

/* Label */
.form .dx-field-item-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    margin-right: 100px;
}

/* Input text */
.form .dx-texteditor-input {
    padding-left: 10px;
}

/* Icon buttons */
.form .dx-button {
    background: transparent;
    border: none;
}

/* Focus effect */
.form .dx-texteditor.dx-state-focused {
    border-color: #A1A1A1;
    box-shadow: 0 0 0 2px rgba(59,130,246,0.15);
}

/* Checkbox spacing */
.form .dx-checkbox {
    margin-top: 10px;
}


input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
}


/* Button */
.btnsignup {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    background: #009966 !important;
    color: #fff !important;
    font-weight: 500;
    margin-top: 10px;
}

.btnsignup:hover {
     background: #007A55 !important;
}

/* Sign in text */
.signin-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.signin-text a {
    color: #009966;
    text-decoration: none;
    font-weight: 500;
}

/* Sign in text */
.signupForm-label {
    text-align: center;
    font-size: 14px;
}

.signupForm-label a {
    color: #009966;
    text-decoration: none;
    font-weight: 500;
}