        body {
            background-color: #f6f8fa;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
        }

        .container {
            background: white;
            padding: 30px 40px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 400px;
            margin-top:50px;
        }
        .container2 {
            background: white;
            padding: 30px 40px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 600px;
            margin-top:50px;
        }

        
        h2 {
            margin-top: 0;
            text-align: center;
            color: #333;
        }

        .message {
            padding: 10px;
            margin-bottom: 15px;
            border-radius: 5px;
        }

        .error {
            background-color: #ffe5e5;
            color: #cc0000;
        }

        .success {
            background-color: #e5ffe5;
            color: #009900;
        }

        label {
            display: block;
            margin-bottom: 10px;
            color: #444;
        }

        input{
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border-radius: 5px;
            border: 1px solid #ccc;
            box-sizing: border-box;
        }

        .btn1 {
            width: 200px;
            padding: 12px;
            background-color: #0057a3;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }

        .btn1:hover {
            background-color: #004080;
        }


        .button2 {
            width: 200px;
            padding: 12px;
            background-color: #0057a3;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }

        .button2:hover {
            background-color: #004080;
        }

        .back-link {
            display: block;
            margin-bottom: 20px;
            text-align: center;
            font-size: 0.9em;
        }

        .back-link a {
            color: #0057a3;
            text-decoration: none;
        }

        .back-link a:hover {
            text-decoration: underline;
        }

        .note {
            font-size: 0.9em;
            color: #666;
            text-align: center;
            margin-top: 10px;
        }

                .header {
    position: fixed;            /* Stick to top */
    top: 0;                     /* 0px from top */
    left: 0;
    right: 0;
    background-color: #fff;     /* Set a background to avoid content showing through */
    border-bottom: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;              /* Ensure it stays on top */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

        .logout {
            background: #dc3545;
            color: white;
            padding: 10px 16px;
            border: none;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
        }

        #contact_privacy{
            display: flex;
            justify-content: space-between;
        }