* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 550px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 31px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 31px;
  background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' rx='31' style='fill: none; stroke: black; stroke-width: 3; stroke-dasharray: 10 5'/></svg>");
  pointer-events: none;
}

.card__logo {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

.card__title {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.card__description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #666;
  padding: 0 10px;
}

.card__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  width: 100%;
}

.card__btn {
  background: transparent;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 100%;
  height: 60px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.card__btn_active {
  border-color: #4285f4;
  color: #4285f4;
}

.card__btn_active:hover {
  background-color: #4285f4;
  color: white;
}

.card__btn_disabled {
  color: #999;
  border-color: #ddd;
  cursor: not-allowed;
}

.card__details {
  font-size: 1rem;
  color: #4285f4;
  text-decoration: none;
}

.card__details:hover {
  text-decoration: underline;
}

.fab {
  font-size: 1.2rem;
}

@media (max-width: 480px) {
  .card {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .card::before {
    border-radius: 20px;
  }
  
  .card__logo {
    width: 120px;
    height: 120px;
  }
  
  .card__title {
    font-size: 1.8rem;
  }
  
  .card__description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .card__buttons {
    margin-bottom: 30px;
  }
  
  .card__btn {
    height: 50px;
    font-size: 0.9rem;
  }
}