/* ==============================================================================
 * DOC-BLOCK: assets/css/pages/register.css
 * Role: styles de presentation frontend pour cette page/composant.
 * Portee: structure visuelle, couleurs, responsive et etats interactifs.
 * Note: ce fichier ne contient pas de logique metier; seulement la couche UI.
 * ============================================================================== */

        /* Background Image */       
        body {
            background-image: url('../../../images/PageCalaoWeb.png') !important;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-position: center;
        }

        .logo {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 80px; /* Responsive size */
            height: auto;
        }

        h1 {
            font-weight: bold;
            color: #BA0001;
        }

        .btn-primary {
            background-color: #BA0001;
            border-color: #BA0001;
        }

        .bottom-right-text {
            position: fixed;
            bottom: 20px;
            right: 10px;
            font-size: 12px;
            text-align: center;
            color: #000;
        }

        .bold-text-bottpm {
            font-weight: bold;
            color: #BA0001;
        }

        .top-right-icons {
            position: absolute;
            top: 200px;
            right: 35px;
            display: flex;
            gap: 10px;
        }

        .top-right-icons img {
            width: 50px; /* Smaller size for responsiveness */
            height: 50px;
            cursor: pointer;
        }

        /* Adjustments for smaller screens */
        @media (max-width: 768px) {
            h1 {
                font-size: 20px; /* Adjust title font size */
            }
            .container {
                margin: 20px auto;
                padding: 10px;
            }
            .top-right-icons img {
                width: 30px;
                height: 30px;
            }
            .logo {
                width: 60px; /* Adjust logo size */
            }
            .bottom-right-text {
                font-size: 10px; /* Adjust text size for smaller screens */
            }
        }

        .container {
            margin-top: 190px; /* Adjust the vertical position */
            margin-right: 100px; /* Add spacing from the right */
        }

    @media (max-width: 768px) {
        .container {
            margin-top: 50px;
            margin-right: auto; /* Center on smaller screens */
            margin-left: auto; /* Center on smaller screens */
        }
    }
        .email-container {
            position: relative;
            display: inline-block;
        }

        .email-icon {
            width: 50px; /* Adjust icon size */
            height: 50px;
            cursor: pointer;
        }

        .email-bubble {
            display: none; /* Hidden by default */
            position: absolute;
            top: -10px; /* Adjust vertical position */
            right: 60px; /* Adjust horizontal position */
            background-color: #fff;
            color: #000;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            white-space: nowrap;
        }

        .email-bubble::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -10px;
            transform: translateY(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent #fff;
        }

        .email-container:hover .email-bubble {
            display: block; /* Show bubble on hover */
        }

        .copy-btn {
            background-color: #BA0001;
            color: #fff;
            border: none;
            padding: 5px 10px;
            font-size: 12px;
            border-radius: 3px;
            cursor: pointer;
            margin-left: 10px;
        }

        .copy-btn:hover {
            background-color: #a00000;
        }
        .copy-btn {
            transition: all 0.3s ease; /* Smooth transition for text changes */
        }

        .forgot-password-wrap {
            margin: 12px 0 0;
        }

        .forgot-password-link {
            display: inline-block;
            color: #7a7a7a;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .forgot-password-link:hover {
            color: #505050;
            text-decoration: underline;
        }

        .forgot-password-link:focus-visible {
            outline: 2px solid rgba(120, 120, 120, 0.5);
            outline-offset: 2px;
            border-radius: 3px;
        }
