
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px; /* Mobile Edge Spacing Fix */
        }

        .login-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            border: 1px solid rgba(255, 255, 255, 0.18);
            width: 100%;
            max-width: 400px;
            text-align: center;
            color: white;
        }

        .logo-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: #4facfe;
        }

        h2 { margin-bottom: 10px; font-weight: 600; }

        p {
            font-size: 14px;
            color: #dcdcdc;
            margin-bottom: 30px;
        }

        .input-group {
            position: relative;
            margin-bottom: 20px;
            text-align: left;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #e0e0e0;
        }

        .input-group input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            outline: none;
            font-size: 16px;
            transition: 0.3s;
        }

        .input-group input:focus {
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 5px #4facfe;
        }

        .action-btn {
            width: 100%;
            padding: 12px;
            background: #4facfe;
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 10px;
        }

        .action-btn:hover {
            background: #00f2fe;
            color: #1e3c72;
        }

        .back-link {
            display: block;
            margin-top: 20px;
            font-size: 14px;
            color: #ddd;
            text-decoration: none;
            transition: 0.3s;
        }

        .back-link:hover { color: #fff; text-decoration: underline; }

        /* Success Message Style (Hidden by default) */
        #success-message {
            display: none;
        }
        .success-icon {
            font-size: 60px;
            color: #2ed573;
            margin-bottom: 20px;
        }
        .text-mail {
            color: #2ed573;
        }
   

        .form-alert{
    display:none;
    margin-bottom:14px;
    padding:12px 14px;
    border-radius:10px;
    font-size:14px;
    text-align:center;
    animation: fadeIn 0.3s ease;
}

.form-alert.error{
    background: rgba(239,68,68,0.12);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.3);
}

.form-alert.success{
    background: rgba(34,197,94,0.12);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.3);
}

@keyframes fadeIn {
    from { opacity:0; transform:translateY(-5px); }
    to { opacity:1; transform:translateY(0); }
}
