* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Shantell Sans', cursive;
}

body {
    /* background: #f5d3dd; */
    /* linear-gradient(45deg, #fff5f9, #ffffff); */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.block {
    background: white;
    box-shadow: 
        0 2px 8px rgba(237, 123, 171, 0.24), /* Более тонкая тень */
        inset 1px 1px 2px rgba(255,255,255,0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    color: #f5d3dd;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255,51,102,0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

input[type="email"], 
input[type="password"] {
    padding: 15px 25px;
    border: 2px solid #f5d3dd;
    border-radius: 15px;
    font-size: 1.1em;
    transition: all 0.3s;
    background: #ffffff;
}

input[type="email"]:focus, 
input[type="password"]:focus {
    border-color: #ff99c2;
    box-shadow: 0 0 10px rgba(255,153,194,0.3);
    outline: none;
}


 /* Заменяем стили кнопки в форме */
 button[type="submit"] {
    background: #ff99c2 !important;
    color: white !important;
    border: 2px solid #ff99c2 !important;
    border-radius: 15px !important;
    padding: 15px 25px !important;
    font-size: 1.2rem !important;
    transition: all 0.3s !important;
    cursor: pointer;
    width: auto;
    /* margin: 20px auto 0; */
    display: block;
    box-shadow: none !important;
}

button[type="submit"]:hover {
    background: white !important;
    color: #ff99c2 !important;
    transform: none !important;
}

.footer {
    margin-top: 25px;
    text-align: center;
    color: #ff99c2;
}

.footer a {
    color: #ff99c2;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

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

.error {
    color: #ff99c2;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 15px;
    margin: 15px 0;
    border: 1px solid #ff99c2;
}
        /* Добавляем стили логотипа */
        .logo-container {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.logo {
    color: #f5d3dd;
    font-size: 4em;
    line-height: 1;
    font-weight: bold;
    text-shadow: 
        2px 2px 0px #ff99c2,
        3px 3px 0px #ff99c2,
        4px 4px 0px #ff99c2,
        5px 5px 0px #ff99c2,
        6px 6px 0px #ff99c2,
        8px 8px 6px rgba(237, 123, 171, 0.3),
        12px 12px 10px rgba(237, 123, 171, 0.2);
    display: inline-block;
    margin: 0 auto 20px;
}
