body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ffd89b, #4367ca);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.211), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%; 
    margin-top: 10px;
}

.form-group label {
    margin-top: 7px;
}

input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 7px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #0056b3;
}

.error,
.success {
    color: red;
    margin-bottom: 10px;
    text-align: center;
}

.deactivated {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.355);
    box-shadow: 0 20px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 30px;
    width: 90%;
    max-width: 400px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center; 
}
.telegram-login {
    text-align: center;
    margin: 20px 0;
}

.telegram-login p {
    margin-bottom: 10px;
    color: #666;
}