.logo-container {
            margin-bottom: 30px;
            text-align: center;
            margin-top: 30px;
        }

        .login-box {
            width: 400px;
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .result-box {
            width: 400px;
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            margin: 20px auto;
        }
        
        .result-box.success {
            border-left: 4px solid #52c41a;
        }
        
        .result-box.error {
            border-left: 4px solid #ff4d4f;
        }
        
        .result-header {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .result-message {
            text-align: center;
            color: #ff4d4f;
            font-size: 16px;
        }

        .form-item {
            margin-bottom: 20px;
        }

        .form-item label {
            display: block;
            margin-bottom: 8px;
            color: #666;
            font-size: 14px;
        }

        .form-item input {
            width: 100%;
            height: 45px;
            padding: 0 15px;
            border: 1px solid #e6e6e6;
            border-radius: 6px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-item input:focus {
            border-color: #2f54eb;
        }

        .login-btn {
            width: 100%;
            height: 48px;
            background-color: #2f54eb;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .login-btn:hover {
            background-color: #1d39c4;
        }

        .title {
            text-align: center;
            font-size: 18px;
            color: #333;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .result-item {
            display: flex;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .result-label {
            width: 80px;
            color: #666;
        }

        .result-value {
            color: #333;
            font-weight: 500;
        }

        .no-result {
            text-align: center;
            color: #999;
            padding: 20px 0;
            display: none;
        }