* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(90deg, #ffffff, #adecff);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: #2e3a45;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background-color: #ffffff;
    border: 1px solid #e0e4e8;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(46, 58, 69, 0.1);
    width: 360px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-container h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1d2731;
    text-align: center;
}

.login-container p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #566674;
}

.btn-telegram,
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0088cc;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: background-color 0.2s ease-in-out;
}

.btn-telegram:hover {
    background-color: #006699;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e0e4e8;
}

.divider:not(:empty)::before {
    margin-right: 0.5em;
}

.divider:not(:empty)::after {
    margin-left: 0.5em;
}

.faq {
    font-size: 0.85rem;
    text-align: center;
    color: #7a8b9b;
    margin-top: 1rem;
}

.faq a {
    color: #4a90e2;
    text-decoration: none;
}

.faq a:hover {
    text-decoration: underline;
}