@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f1923;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content {
    background-color: rgba(47, 49, 54, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 40px;
}

h1 {
    color: #7289da;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 500;
}

.faq-container {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #4a4d52;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 18px;
    color: #7289da;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.faq-question.active::before {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: rgba(44, 47, 51, 0.7);
    border-radius: 5px;
    font-size: 14px;
    color: #b9bbbe;
}

.faq-question.active + .faq-answer {
    display: block;
}

.back-to-login {
    text-align: center;
    margin-top: 30px;
}

.back-to-login a {
    color: #7289da;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.back-to-login a:hover {
    text-decoration: underline;
}

.back-to-login a i {
    margin-right: 5px;
}