/* Основные стили и фон */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(160deg, #89f7fe 0%, #66a6ff 100%);
    overflow: hidden;
    position: relative;
}

/* Фоновые фигуры для декорации */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-shapes::before,
.background-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.background-shapes::before {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 15%;
    transform: rotate(30deg);
}

.background-shapes::after {
    width: 250px;
    height: 250px;
    bottom: 5%;
    right: 10%;
    transform: rotate(-45deg);
}


/* Контейнер формы */
.login-container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    max-width: 350px;
    width: 100%;
}

/* Логотип */
.logo {
    position: relative;
    left: -40px;
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0 auto 30px auto;
}

.logo span {
    position: relative;
    left: 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 60px;
}

/* Поля ввода */
.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder {
    color: #888;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(102, 166, 255, 0.5);
}

/* Кнопка "Войти" */
button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background-color: #6a82fb;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5568d4;
}

/* Ссылки */
.links {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links a {
    color: #f8f9fa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #ccc;
}

.links .signup-link {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 500;
}

.notice-message {
    padding: 20px;
    color: #f8f9fa; /* Светлый цвет текста */
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}
.notice-message .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}