 :root {
            --primary-color: #FF7A3D;
            --secondary-color: #FF9D5C;
            --dark-color: #1A1A1A;
            --light-bg: #FAF7F3;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: var(--light-bg);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-container {
            width: 100%;
            max-width: 650px;
            padding: 2rem;
        }

        .login-card {
            background-color: white;
            border-radius: 1.5rem;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .login-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .login-header h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 0.3rem;
        }

        .login-header p {
            color: #999;
            font-size: 0.9rem;
        }

        .form-group {
            margin-bottom: 0.8rem;
            position: relative;
        }
        .form-group .TimeData{
        	position: absolute;
		    bottom: 0px;
		    right: 0px;
		    margin: 6px;
		    border-radius: 6px;
		    padding: 4px 10px;
		    background: #fafafa;
		    border: solid 1px #e0e0e0;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: var(--dark-color);
            font-size: 0.85rem;
        }

        .input-group {
            position: relative;
        }

        .input-group i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 1.1rem;
        }

        .input-group input {
            width: 100%;
            border: 1px solid #e0e0e0;
            border-radius: 0.6rem !important;
            padding: 0.65rem 1rem 0.65rem 3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            background-color: #fafafa;
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 122, 61, 0.1);
        }

        .input-group input::placeholder {
            color: #ccc;
        }

        .password-toggle {
            position: absolute;
            right: 3rem;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            cursor: pointer;
            font-size: 1.1rem;
            background: none;
            border: none;
            padding: 0;
        }

        .password-toggle:hover {
            color: var(--primary-color);
        }

        .login-btn {
            width: 100%;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0.5rem;
            padding: 0.85rem;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.8rem;
        }

        .login-btn:hover {
            background-color: #E56A2D;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 122, 61, 0.3);
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background-color: #ddd;
        }

        .divider span {
            padding: 0 1rem;
            color: #999;
            font-size: 0.9rem;
        }

        .form-footer {
            text-align: center;
        }

        .form-footer p {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 0.6rem;
        }

        .form-footer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .form-footer a:hover {
            color: #E56A2D;
        }

        .terms-text {
            text-align: center;
            color: #999;
            font-size: 0.8rem;
            margin-top: 1.5rem;
            line-height: 1.5;
        }

        .terms-text a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .terms-text a:hover {
            text-decoration: underline;
        }

        /* Desktop Layout */
        @media (min-width: 1024px) {
            body {
                justify-content: flex-end;
                padding-right: 2rem;
                background-color: transparent;
                margin-right: 10%;
            }

            .login-container {
                max-width: 500px;
                padding: 0;
            }

            .login-card {
                background-color: white;
                border-radius: 1.5rem;
                padding: 3rem 2rem;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            }
        }

        /* Mobile Layout */
        @media (max-width: 1023px) {
            body {
                background-color: var(--light-bg);
            }

            .login-container {
                max-width: 100%;
                padding: 1rem;
            }

            .login-card {
                padding: 2rem 1.5rem;
            }

            .login-header h1 {
                font-size: 1.8rem;
            }
        }