/* Full page layout */
.full-page {
    display: flex;
    flex-wrap: nowrap;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Left side: Login form container */
.login-form-container {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Logo background */
.logo-background {
    position: absolute;
    top: 7%;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('/images/logo/carbonsifrmainlogo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

/* Right side: Welcome message container */
.welcome-message-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('/images/welcome_uae.jpeg');
    background-color: #adb5bd;
    background-size: cover;
    background-position: center;
}

.kite{
    position: absolute;
    width: 159px;
    height: 131px;
    left: 68px;
    top: 71px;

    background-image: url('/images/kite.png');
    background-size: cover;
}

.welcome-message-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.welcome-message {
    z-index: 2;
    text-align: center;
    padding: 20px;
}

/* Styling for the text in the welcome message */
.welcome-text-container {
    max-width: 80%;
}

.display-4 {
    font-size: 2.5rem;
}

.lead {
    font-size: 1.25rem;
}

/* Reset styles to prevent scrollbars */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Form card styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2; /* Ensure the card is above the logo background */
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Input styling */
.form-control {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #ffffff;
}

.form-control::placeholder {
    color: #adb5bd;
    opacity: 1;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Button styling */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #ffffff;
}

/* Link styling */
.btn-link {
    font-size: 0.875rem;
    color: #031833;
    text-decoration: none;
}

.btn-link:hover {
    color: #031833;
    text-decoration: underline;
}

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

.mt-3 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.w-100 {
    width: 100%;
}

.w-75 {
    width: 75%;
}

@media (max-width: 992px) {
    .login-form-container, .welcome-message-container {
        flex: 1 0 100%;
    }
}