*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #22223B;
}

.main-window, .second-window{
    width: 90%;
    max-width: 560px;
    background: linear-gradient(135deg, #C9ADA7, #4A4E69);
    color: #F2E9E4;
    margin: 100px auto 0;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
}
.second-window{
    margin-top: 10px;
    display: none;
}
.cocktail-card{
    display: none;
}

h1{
    font-size: 40px;
    color: #F2E9E4;
    text-shadow: 2px 2px 8px #4A4E69, 0 0 2px #C9ADA7;
}
h2{
    font-size: 28px;
}
.errore{
    text-align: left;
    font-size: 20px;
    margin-left: 10px;
    margin-top: 20px;
    display: none;
}
.search{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search input{
    border: 0;
    outline: 0;
    background: #F2E9E4;
    color: #222;
    padding: 10px 25px;
    height: 60px;
    border-radius: 30px;
    flex: 1;
    margin-right: 16px;
    font-size: 18px;
}

.search button{
    border: 0;
    outline: 0;
    background: #F2E9E4;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.search button img{
    width: 16px;
}

.credenziali{
    margin: 40px 50px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.credenziali img{
    width: 150px;
    border-radius: 20px;
}
.sottotitolo{
    font-size: 16px;
    color: #C9ADA7;
    margin-top: -4px;
    margin-bottom: 10px;
}

.info{
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.instructions{
    text-align: justify; 
}

.second-window ul li{
    list-style: none;
    font-size: 20px;
}

.second-window h2{
    margin-bottom: 40px;
}