/* Syn Manage - Custom CSS */
body {
    background-color: #ffffff;
}

h1 {
    color: #8224e3;
    font-size: 32px;
    font-weight: bold;
}

h2 {
    color: #333333;
    font-size: 28px;
    font-weight: bold;
}

h3 {
    color: #333333;
    font-size: 24px;
    font-weight: bold;
}

h4 {
    color: #333333;
    font-size: 20px;
    font-weight: bold;
}

h5 {
    color: #333333;
    font-size: 18px;
    font-weight: bold;
}

p {
    color: #666666;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
}

a {
    color: #0073aa;
}

a:hover {
    color: #005177;
}

button, .button, input[type="submit"], input[type="button"], .btn {
    background-color: #0073aa;
    color: #ffffff;
    border-radius: 4px;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

button:hover, .button:hover, input[type="submit"]:hover, input[type="button"]:hover, .btn:hover {
    background-color: #005177;
}

input[type="text"], input[type="email"], input[type="password"], input[type="search"], input[type="url"], textarea, select {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    padding: 8px 12px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="url"]:focus, textarea:focus, select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px #0073aa20;
}

@media (max-width: 768px) {
    h1 {
        font-size: 25.6px;
    }
    h2 {
        font-size: 23.8px;
    }
    h3 {
        font-size: 21.6px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 17.1px;
    }
    p {
        font-size: 14.4px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
}

