@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(47, 128, 0); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #71fc6a; 
  }
  body {
    background-color: #f0f9e0; /* Pastel Green background */
    font-family: 'Poppins' , sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Make sure the body takes up the full viewport height */
    margin: 0; /* Remove default body margin */
}

.card {
    border: none;
    border-radius: 20px; /* Curved border */
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    animation: slide-in 0.5s ease-in-out;
    width: 90%; /* Make the card take up 90% of the viewport width */
    max-width: 500px; /* Set a maximum width for the card */
    margin: auto; /* Center the card horizontally */
}

@keyframes slide-in {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.card-header,
.card-body {
    background-color: #f0f9e0; /* Pastel Green header and body */
    text-align: center;
    border: none;
}

.card-title {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.input-group-text {
    border: none;
    color: white;
}

.btn-primary {
    background-color: #02d3e1;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #00b3a2;
}

.social-icon {
    font-size: 30px;
    margin: 0 10px;
    color: #02d3e1;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.microsoft-icon {
    color: #02d3e1;
}

.mt-3 {
    margin-top: 20px;
    text-align: center;
}
