/*#region responsive */
.welcome-section {
    padding: 40px 20px;
    background-color: #fff8f0;
    text-align:center;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    color: #ff6600;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.welcome-image img {
    width: 300px;
    max-width: 90%;
    margin-bottom: 30px;
}

.login-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease;
}

.btn.orange {
    background-color: #ff6600;
}

.btn.orange:hover {
    background-color: #e65c00;
}

.btn.blue {
    background-color: #0077cc;
}

.btn.blue:hover {
    background-color: #005fa3;
}

.btn.gray {
    background-color: #555;
}

.btn.gray:hover {
    background-color: #333;
}

/*#endregion */
 
/*#region responsive */

/* Monitor */
@media (min-width: 768px) and (max-width: 992px) {
   
}

/* Tablet */
@media (min-width: 576px) and (max-width: 768px) {
    
}

/* Phone */
@media (max-width: 576px) {
  
}

/*#endregion */
