/* CSS Document */
@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");
* {
  box-sizing: border-box; }

body {
  font: 1rem/1.5 "Poppins", sans-serif; }

.container {
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: 200px; }

.card {
  width: 604px;
  background-color: #F9F8FB;
  border-radius: 4px;
  border: 1px solid #EEECF1;
  display: flex;
  padding: 1rem .5rem; }

h1 {
  font: 24px 600 "Poppins", sans-serif; }

.btn_dark {
  background-color: #6638F0;
  color: #fff;
  width: 133px;
  height: 42px;
  padding: 9px 14px;
  border-radius: 4px; }

.btn_light {
  background-color: #fff;
  color: #6638F0;
  border: none;
  width: 150px;
  height: 42px;
  padding: 9px 14px;
  border-radius: 4px; }

.modal_container {
  display: flex;
  gap: 2rem;
  width: 800px;
  padding: 0; }

.modal_box {
  width: 400px;
  height: 545px;
  margin: 0;
  padding: 0; }

.modal_text {
  background: #fff; }

.gradient {
  background-image: linear-gradient(to bottom, #6638F0, #5CC9F5); }

a {
  color: #fff;
  text-decoration: none; }

.modal_buttons {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-content: center; }

@media screen and (max-width: 600px) {
  .gradient {
    display: none; } }
