html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Reset margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.email-section {
    margin-bottom: 20px;
    text-align: left;
}

.email-section label {
    font-size: 0.9em;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.email-section input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 0.95em;
}

.email-section input[readonly] {
    cursor: not-allowed;
}

.container {
    background: #fff;
    /*border: 1px solid #ddd;*/
    border-radius: 8px;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    padding: 20px;
    width: 520px;
    text-align: left;
}

.container h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.container p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.email-input {
    background: #f5f5f5;
    border: none;
    border-radius: 5px;
    padding: 10px;
    text-align: left;
    width: 100%;
    text-align: center;
    font-size: 1em;
    color: #333;
    margin-bottom: 20px;
    pointer-events: none; /* Make input non-editable */
}

.custom-green-button {
    background-color: #007A33 !important; /* Adjust the green color */
    color: white !important;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.custom-green-button:hover {
    background-color: #006622 !important;
}


.send-button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.send-button:hover {
    background-color: #218838;
}

.logo-container {
    margin: 0;
    align-content: center;
    align-self: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    place-items: center;
}

.logo-image {
    max-width: 150px; /* Adjust size of the logo */
    height: auto;
    display: inline-block; /* Ensures centering */
}

.send-button:hover {
    background-color: #005f00;
}

.code-form {
    text-align: left;
    max-width: 320px; /* Adjust the width as needed */
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px; /* Adds space between the label/input and the button */
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 1em;
    color: #333;
}

input.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.95em;
}

.text-danger {
    font-size: 0.9em;
    color: #dc3545;
    margin-top: 8px;
    display: block;
}