.login-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.telegram-logo {
    width: 90px;
    height: 90px;
    background: #2b5278;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.telegram-logo svg {
    width: 50px;
    height: 50px;
    fill: #fff;
    transform: translateX(2px);
}

.login-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.login-content p {
    font-size: 14px;
    color: #7d8b99;
    margin-bottom: 30px;
    line-height: 1.5;
}

.input-group {
    width: 100%;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    background: #0e1621;
    border: 1px solid #242f3d;
    padding: 14px 16px;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border 0.2s;
}

.input-group input:focus {
    border-color: #5288c1;
}

.btn-next {
    width: 100%;
    background: #5288c1;
    border: none;
    padding: 14px;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-next:hover {
    background: #4075a6;
}