@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter Tight', sans-serif;
    color: aliceblue;
    letter-spacing: 1px;
    line-height: 1.5;
}

section{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #101828;
}

.background{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    min-width: 20.5rem;
    max-width: 32rem;
    gap: 2.5rem;
}

.feedback-head{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.header-and-icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
}

.header-and-icon span{
    font-size: 3rem;
    color: #99a1af;
}

.header-text-desc{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .25rem;
}

.header-text-desc h1{
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.header-text-desc p{
    font-size: .9rem;
    color: #99a1af;
    text-align: center;
    letter-spacing: 1px;
}

.input-group{
    display: flex;
    gap: 1rem;
}

.input-group input{
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .5rem;
    border: 1px solid #3b4455;
    background: #1f2937;
    color: #99a1af;
    font-size: .9rem;
    outline: none;
}

.input-group input:focus-visible{
    border-color: #4f46e5;
    box-shadow: 0 0 5px rgba(79, 70, 229, 0.8);
}

.input-group button{
    padding: .75rem 1rem;
    border-radius: .5rem;
    border: none;
    background: #4f46e5;
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.input-group button:hover{
    background: #352f9a;
}

.team-members-section{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.add-team-container{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.team-member{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0;   
    border-bottom:solid .5px #323845 ;
    border-top:solid .5px #323845 ;
};

.team-member-htext p{
    color: #99a1af;
    font-size: .9rem;
}

.avatar-and-info{
    display: flex;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
}

.avatar{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.team-member-info h1{
    font-size: .9rem;
    color: #fff;
    font-weight: 500;
}

.team-member-info p{
    font-size: .9rem;
    color: #99a1af;
}


.invite{
    display: flex;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    border: none;
    height: auto;
    gap: .5rem;
}

.invite p{
    font-size: .9rem;
    color: #fff;
    cursor: pointer;
}

.invite span{
    font-size: 1.2rem;
    color: #99a1af;
    cursor: pointer;
}