@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.win_container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    z-index: 1; /* Чтобы форма была над фоном */
    transform: translateY(-20px);
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.input_group {
    margin-bottom: 20px;
    text-align: left;
}

.input_group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 400;
}

.input_group input {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.input_group input:focus {
    border-color: #2193b0;
    box-shadow: 0 0 0 3px rgba(33, 147, 176, 0.2);
    outline: none;
}

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

.forgot_password {
    text-align: right;
    margin-bottom: 25px;
}

.forgot_password a {
    color: #2193b0;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.forgot_password a:hover {
    color: #1a7b93;
}

.send_button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #6dd5ed, #2193b0);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 147, 176, 0.3);
}

.send_button:hover {
    background: linear-gradient(45deg, #2193b0, #6dd5ed);
    box-shadow: 0 6px 20px rgba(33, 147, 176, 0.4);
    transform: translateY(-2px);
}

.signup_link {
    margin-top: 25px;
    font-size: 0.9em;
    color: #666;
}

.signup_link a {
    color: #833ab4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup_link a:hover {
    color: #6a2a91;
}