@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
}

body{
    background-color: #eef1f3;
}

h1{
    font-weight: 600;
	color: #2F8B3F; 
}

h2, h3, h4{
    font-weight: 400;
}

h3, img:hover{
	cursor: pointer;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.card{
    background-color: #ffffff;
    padding: 45px;
	margin: 25px;
    border-radius: 15px;

    border: solid 1px #2F8B3F;
}

.container-info{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-compte{
    display: flex;
    align-items: center;
    gap: 15px;

    & img {
        width: 25px;
        height: 25px;
    }
}

.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
	border: solid 1px #2F8B3F;
    border-radius: 15px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
  }
  
  .toast.show {
    visibility: visible;
    opacity: 1;
  }
  