:root {
    --primary-color: #8a66b7;
    --secondary-color: #66b7b1;
    --body-bg-color: #f0f2f5;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: var(--body-bg-color);
}

.login-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin-top: 50px;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.header-section img {
    max-height: 100px;
    /* Adjust the logo size */
}

.header-section h4 {
    margin-bottom: 0;
    color: var(--primary-color);
}

.header-section p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 14px;
}

.login-container h4 {
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}


.login-container h3 {
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    margin-bottom: .5rem;
    display: block;
}

.btn-primary {
    width: 100%;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

a.btn-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--primary-color);
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.icon-container i {
    font-size: 4rem;
    color: var(--primary-color);
    background-color: var(--body-bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    padding: 0.5rem;
}


.alert ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.alert li {
    padding: 0;
    margin: 0;
}
.readonly-input {
    background-color: #333; /* Dark gray background */
    color: #bbb; /* Light gray text for contrast */
    cursor: not-allowed; /* Disable cursor */
    border: 1px solid #444; /* Dark border */
    padding: 8px;
    border-radius: 5px;
}

.custom-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.custom-stepper .step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e9ecef;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    transition: background 0.3s, color 0.3s;
}
.custom-stepper .step.active,
.custom-stepper .step.completed {
    background: #0d6efd;
    color: #fff;
}
.custom-stepper .step-line {
    flex: 1;
    height: 4px;
    background: #e9ecef;
    margin: 0 4px;
    z-index: 1;
    border-radius: 2px;
}
.custom-stepper .step.completed + .step-line {
    background: #0d6efd;
}
.card {
    border-radius: 18px;
}