﻿body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

/* Background Styles */
.bg {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-image: url('images/18741b2f-4f7c-40b3-a5d9-1b784d017731.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Adding dark overlay for better text visibility */
        z-index: 1;
    }

/* Container and Form Styling */
.container.custom-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.switch {
    text-align: center;
    margin-bottom: 20px;
}

.center-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.text-danger {
    color: #ff0000;
}
