﻿/* Ensure full height */
html, body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa; /* Optional: Light gray background */
}

/* Center the form container */
.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Make sure it takes the full viewport height */
    width: 100%;
}

/* Form styling */
.form-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: left;
}

    /* Ensure inputs take full width */
    .form-box .form-control {
        width: 100%;
    }

/* Adjust button */
.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group {
    display: flex;
    align-items: center; /* Aligns input and icon in the same line */
}

.input-group-text {
    background-color: #f8f9fa; /* Light grey background */
    border: 1px solid #ced4da; /* Border color */
    padding: 11px 12px;
    display: flex;
    align-items: center; /* Ensures the icon is centered */
    justify-content: center;
}

.input-group .form-control {
    height: 40px;
    flex: 1; /* Makes sure the input expands properly */
}

.captcha-code {
    font-weight: bold;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    padding: 8px 12px;
    border-radius: 5px;
}