﻿/* Подключение шрифтов */
@font-face {
    font-family: 'Petrov Sans';
    src: url('fonts/PetrovSans-Trial-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Petrov Sans';
    src: url('fonts/PetrovSans-Trial-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
h1 {
    color: #1b1464;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); */
}
.email-input::placeholder {
    color: #1b14647a; /* Ваш цвет */
}

/* Для разных браузеров с префиксами */
.email-input::-webkit-input-placeholder { /* Chrome, Safari */
    color: #1b14647a;
}

.email-input::-moz-placeholder { /* Firefox 19+ */
    color: #1b14647a;
    opacity: 1;
}

.email-input:-ms-input-placeholder { /* IE 10+ */
    color: #1b14647a;
}

.email-input:-moz-placeholder { /* Firefox 18- */
    color: #1b14647a;
    opacity: 1;
}
@font-face {
    font-family: 'Petrov Sans';
    src: url('fonts/PetrovSans-Trial-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Petrov Sans';
    src: url('fonts/PetrovSans-Trial-SemiBolditalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Применение шрифта ко всему сайту */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Petrov Sans', 'Arial', sans-serif !important;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 50%, #f5f7fa 100%);
    font-family: 'Petrov Sans', sans-serif;
    padding: 20px;
}


.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255 255 255 / 32%);
    backdrop-filter: blur(5px);
}

.logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    /*background: rgba(255, 255, 255, 0.3);*/
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*border: 2px solid rgba(255, 255, 255, 0.5);*/
}

    .logo img {
        object-fit: contain;
    }

.logo-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    font-weight: bold;
}

h1 {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

.email-form {
    display: flex;
    gap: 10px;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    font-family: 'Petrov Sans';
}

.email-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-size: 18px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #1b1464;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: 'Petrov Sans';
}



    .email-input:focus {
        border-color: rgba(255, 255, 255, 0.8);
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
form {
    width: 100%;
}
.submit-btn {
    background: rgb(27 20 100);
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}
    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgb(26 34 139 / 60%);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

@media (max-width: 480px) {
    h1 {
        font-size: 19px;
    }

    .subtitle {
        font-size: 20px;
    }
    .email-input {
        font-size: 16px;
        padding: 14px 16px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 14px 24px;
    }
}
