* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    /* min-height: 100vh; */
    overflow: hidden;
    overflow-y: hidden;
    font-family: "Inter", Arial, sans-serif;
    background-size: cover;
}

.manitence {
    text-align: center;
    margin: 0;
    /* font-size: 28px; */
    color: #3b3b3b;
    padding-bottom: 1em;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* background: radial-gradient(circle at top, #806b4d, #5B4c39); */
}


.card {

    width: 100%;
    max-width: 420px;

    background: rgba(255, 255, 255, .95);

    border-radius: 32px;

    padding: 35px 25px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .25);

    animation: show .5s ease;

}


.logo {

width: 150px;

height: 150px;

margin: auto;

display: flex;

align-items: center;

justify-content: center;

background: #ffffff;

border-radius: 25px;

box-shadow:
        0 10px 30px rgba(0, 0, 0, .15);
}


.logo img {
    max-width: 120px;
}


.restaurant-name {

    text-align: center;

    margin-top: 25px;

}


.restaurant-name h1 {

    margin: 0;
    font-size: 28px;
    color: #3b3b3b;

}


.restaurant-name p {

    margin-top: 8px;

    color: #777;

}


.infos {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.info-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 16px;

    border-radius: 18px;

    background: #fafafa;

    text-decoration: none;

    color: #333;

    transition: .3s;

}


.info-item:hover {

    transform: translateY(-3px);

    background: #fff;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);

}


.icon {

width: 45px;

height: 45px;

border-radius: 50%;

display: flex;

align-items: center;

justify-content: center;

background: #000000;

color: white;

font-size: 22px;
}


.icon svg {

    width: 24px;

}


.info-item strong {

    display: block;

    font-size: 14px;

}


.info-item span {

    display: block;

    margin-top: 4px;

    font-size: 14px;

    color: #666;

}



.btn {

    width: 100%;

    margin-top: 30px;

    padding: 16px;

    border: 0;

    border-radius: 16px;

    background: #E85743;

    color: #fff;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: .3s;

}


.btn:hover {

    background: #cf4735;

    transform: translateY(-2px);

}



@keyframes show {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}