﻿@import url('enter_style.css');
body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    margin: 0;
    background-color: rgb(181, 222, 255);
    /*background-image: url('../img/gradient_1920_1080\ \(2\).png');*/
}






/* header */




header {
    background-color: rgb(94, 148, 192);
}

.header-nav {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 15px 20px;
    justify-content: space-between;
    max-width: 1400px;
    box-sizing: border-box;
}

.logo-link {
    text-decoration: none;
    color: white;
}

.logo-link:hover {
    text-decoration: none;
    color: white;
}

.logo-link-head {
    font-family: Pacifico;
    font-weight: 400;
    font-size: 36px;
    margin: 0;
    line-height: 63px;
}



/* main */




main {
    display: flex;
    justify-content: center;
    min-height: 100px;
    align-items: center;
    min-height: 85vh;
}

.enter-inputs-block {
    padding: 20px 25px;
    background-color: rgb(39, 101, 151);
    border-radius: 30px;
    align-self: center;
}

.enter-head {
    padding: 0;
    margin: 0;
    color: white;
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.enter-input {
    box-sizing: border-box;
    border: 0px;
    padding: 10px 0;
    padding-left: 20px;
    border-radius: 50px;
    font-size: 20px;
    width: 100%;
    margin-bottom: 15px;
}

    .enter-input.password {
        margin-bottom: 25px;
    }

    .enter-input::placeholder {
        color: #C4C4C4;
    }

.alert {
    margin-bottom:15px;
}

.alert span {
    color: white;
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
}

.login-button {
    background-color: #5E94C0;
    color: white;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    padding: 10px 30px;
    border-radius: 50px;
    border: 0;
    font-family: "Roboto", sans-serif;
    transition: background-color 0.5s ease;
}

.login-button:hover {
    cursor: pointer;
    background-color: #87B9E2;
}

.button-container {
    display: flex;
    justify-content: center;
}


@media (max-width: 1024px) {
    .header-nav {
        padding: 15px 20px;
    }

    .nav-list-item {
        margin-right: 30px;
    }

        .nav-list-item a {
            font-size: 20px;
        }

    main {
        margin: 40px 20px;
        min-width: 0px;
    }

    .phone-info {
        width: 300px;
    }

    .logout-button {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        padding: 10px 15px;
        display: flex;
    }

    .logo-link-head {
        font-size: 24px;
        line-height: 40px;
    }

    .nav-list {
        display: none;
    }

    .nav-list-item {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .nav-list-item:last-child {
        margin-bottom: 0;
    }

    .nav-list-item a {
        font-size: 16px;
    }

    .desktop-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-nav {
        padding: 10px 15px;
    }

    main {
        margin: 30px 0;
        padding: 0 15px;
        margin-bottom: 40px;
        min-height: 80vh;
    }
}