       #top_login {
            background: linear-gradient(135deg, #faf0e5 0%,#faf0e5 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Vazirmatn', 'Tahoma', sans-serif;
        }   

        .login-card {
            background-color: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }

        .form-control {
            border-radius: 0.5rem;
        }

        .btn-primary {
            background-color: #18897e;
            border-color: #18897e;
            border-radius: 0.5rem;
        }

        .btn-primary:hover {
            background-color: #c7f4e0;
            border-color: #c7f4e0;
        }

        .title {
            font-weight: 600;
            margin-bottom: 1.5rem;
        }