:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --button-login: #EA7C07; /* Custom color for login */
    --black: #000000; /* Custom color for black */
}

/* Base styles for the page content */
.page-resources-66b-login-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-white);
}

.page-resources-66b-login-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-66b-login-guide__section {
    padding: 60px 0;
    background-color: var(--background-white);
}

.page-resources-66b-login-guide__section:nth-of-type(even) {
    background-color: var(--background-light);
}

.page-resources-66b-login-guide__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-resources-66b-login-guide__section-title--light {
    color: var(--text-light);
}

.page-resources-66b-login-guide__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-66b-login-guide__text-block--light {
    color: var(--text-light);
}

.page-resources-66b-login-guide__image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-66b-login-guide__ordered-list,
.page-resources-66b-login-guide__unordered-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.page-resources-66b-login-guide__list-item {
    margin-bottom: 20px;
    background-color: var(--background-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.page-resources-66b-login-guide__list-item-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-resources-66b-login-guide__list-item p {
    font-size: 16px;
    margin-bottom: 10px;
}

.page-resources-66b-login-guide__list-item a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.page-resources-66b-login-guide__list-item a:hover {
    color: var(--button-login);
}