/* BODY */

#main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 1250px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);

    color: #f1f1f1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    gap: 20px;
    padding: 30px 10px;
    margin-bottom: 50px;
}

#index-title{
    display: block;
    color: white;
    margin: 0;
    padding: 0;
}

#index-subtitle{
    display:block;
    color: white;
    margin: 0;
    padding: 0;
}

/* MAIN CONTAINER */

#main-container{
    max-width: calc(var(--vw) * 0.9);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}

/* SIGNUP */

#signup-container{
    width: 600px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#signup-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.08); /* very transparent, not white */
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%); /* Safari */    
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: #f1f1f1; /* softer white text */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

#signup-advantages{
    font-weight: bold;
    padding: 20px 10px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.08); /* very transparent, not white */
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%); /* Safari */    
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: #f1f1f1; /* softer white text */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* LOGIN */

#login-container{
    width: 600px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; 
}

#login-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.08); /* very transparent, not white */
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%); /* Safari */    
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: #f1f1f1; /* softer white text */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

#login-advantages{
    font-weight: bold;
    padding: 20px 10px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.08); /* very transparent, not white */
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%); /* Safari */    
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: #f1f1f1; /* softer white text */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* SIGNUP AND LOGIN COMMON */

#signup-container,
#login-container {
    padding: 10px 10px;    
}

#signup-advantages,
#login-advantages {
  box-sizing: border-box;
  border-radius: 10px;
  margin: 10px 0;
}

#signup-title,
#login-title {
    border-radius: 10px;
}

.emoji {
    font-size: 1.5rem;
}

.advantages{
    margin: 5px 0;
}

.button-container{
    display:flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    background: linear-gradient(
        135deg,
        rgba(0, 255, 255, 0.15),
        rgba(0, 255, 255, 0.05)
    );
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);

    color: #e6ffff; /* soft cyan-white text */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* REVIEWS */

#reviews-container{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--vw) * 0.9);
    height: 200px;
    border: 2px solid white;  
    display:none;  
}

#reviews-wrapper{
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid orange;
}

#review {
    height: 90%;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    color: white;
}