body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.btn {
    border-radius: 1.375rem;
}

.form-control {
    border-radius: 1.375rem;
}

.aiw-background-light-gray {
    background-color: #f8f9fa;
}

.aiw-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.aiw-outlinebox {
    display: flex;
    flex-direction: row;
    border: 1px solid #c0c0c0;
    border-radius: 0.688rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    background-color: white;
    max-width: 720px;
    width: 100%;
    overflow: hidden;
}

.aiw-subscription-panel {
    width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e0e0e0;
}

.aiw-subscription-logo {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 1rem;
}

.aiw-subscription-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

.aiw-subscription-entry {
    margin-bottom: 1rem;
}

.aiw-subscription-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aiw-subscription-value {
    font-size: 1rem;
    color: #2c2c2c;
    font-weight: 500;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.aiw-login-content {
    flex: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aiw-btn-primary {
    background-color: #3de8e5 !important;
    border-color: #3de8e5 !important;
    color: #ffffff !important;
}

.aiw-btn-primary:hover {
    /*background-color: #30d0ce !important;
    border-color: #30d0ce !important;*/
    background-color: #09AFA9 !important;
    border-color: #09AFA9 !important;
}

.aiw-btn-secondary {
    background-color: #6C757D !important;
    color: #ffffff !important;
}

.aiw-btn-secondary:hover {
    /*background-color: #30d0ce !important;
    border-color: #30d0ce !important;*/
    background-color: #495057 !important;
    border-color: #495057 !important;
}

.aiw-main-header {
    text-align: center;
    margin-bottom: 1rem;
}

.aiw-main-header-logo {
    background-image: url("../img/aiw-platform.svg");
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 1rem;
}
img.aiw-main-header-logo {
    display: block;
    height: 25px;
    margin: 0 auto 1rem;
}

.aiw-main-header-title {
    font-size: 1.2rem;
    color: #5c6f82;
}

.aiw-main-header-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
}

.aiw-main-form-field-label {
    /* ex .aiw-main-form-label-email */
    width: 100%;
    text-align: left;
    font-size: 1rem;
    color: #5c6f82;
    padding-bottom: 0.3rem;
}

.aiw-main-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

.aiw-text-bolded {
    font-weight: bold;
}

.aiw-custom-select-wrapper {
      position: relative;
}

.aiw-custom-select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      padding-right: 2.5rem;
      background-image: url("../img/chevron-down.svg");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 1rem;
      cursor: pointer;
}

.aiw-link-privacy {
    color: #5c6f82;
}

.aiw-link-privacy:hover {
    color: #09AFA9;
}

.w-40 {
    width: 40%;
}

@media (max-width: 768px) {
    .aiw-outlinebox {
        flex-direction: column;
        width: auto; /* Allow the width to adapt to the content */
        max-width: none; /* Prevent it from stretching full width */
    }

    .aiw-subscription-panel {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .aiw-login-content {
        padding: 2rem;
    }

    .aiw-main-header-logo {
        display: none; /* Hide the logo in the header on small screens */
    }
}

