body{
padding:0;
margin:0;
font-family:sans-serif;
background:#ccc;
}


body {
    font-family: Arial, sans-serif;
    background-color: #E1E2EF; /* Основной фон */
}

.account-type-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.account-type-container h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;
}

.account-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.account-option {
    flex: 1;
    background-color: #FFFFFF;
    border: 2px solid #E1E2EF;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.account-option:hover {
    border-color: #5F6CDF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.account-option input[type="radio"] {
    display: none;
}

.account-option input[type="radio"]:checked + .account-content {
    border-color: #5F6CDF;
    box-shadow: 0 4px 8px rgba(95, 108, 223, 0.2);
}

.account-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    font-size: 40px;
    color: #5F6CDF;
}

.texts .title {
    font-size: 18px;
    font-weight: bold;
    color: #5F6CDF;
    margin-bottom: 5px;
}

.texts .description {
    font-size: 14px;
    color: #666;
}



/* Navigation Bar */
.navbar {
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10; /* Keeps the header above other elements */
}