/* CSS styling for inter-div display */
body {
  background-image: url("assets/background_esoft_flow.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /* Other CSS properties here to style the content of the body */
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  color: #FF642B;
  text-decoration: none;
}

#container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  background-color: white;
  width: 80%;
  height: 90%;
  border-radius: 50px;
}

#fill-info-container,
#signature-preview-container {
  padding: 20px;
}

#fill-info-container {
  max-width: 800px;
  margin: 0 auto;
  margin-left: 50px;
  margin-right: 0px;
  margin-top: 50px;
  margin-bottom: 10px;
}
.city-buttons {
font-family: "Verdana", sans-serif;
    color: #373B54;
    font-size: 12px;
}
#info-form {
  height: 100%;
}

#fill-info-top-banner {
  margin-bottom: 10px;
  margin-bottom: 30px;
  display: flex;
}

#fill-info-top-banner .logo {
  width: 75px;
  height: 75px;
}

#fill-info-top-banner .title {
  font-family: "Verdana", sans-serif;
  color: #373B54;
  font-weight: bold;
}

/* CSS for the info form */

#info-form input[type="text"] {
  border: 2px solid #FF642B;
  border-radius: 20px;
  padding: 10px;
  font-family: "Verdana", sans-serif;
  color: #373B54;
  height: 100%;
  max-height: 50px;
  width: 100%;
  max-width: 800px;
  margin-bottom: 10px;
}

/* CSS for placeholder text */
#info-form input[type="text"]::placeholder {
  color: #373B54;
  font-family: Arial, sans-serif;
}

.country-buttons {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  gap: 20px;
}

.country-buttons input[type="radio"] {
  appearance: none;
  border: 2px solid #FF642B;
  border-radius: 10px;
  width: 20px;
  height: 20px;
  margin: 0;
  background-color: transparent;
}

.country-buttons input[type="radio"]:checked {
  background-color: #FF642B;
}


/* CSS for the Generate button */
#generate {
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  background-color: #FF642B;
  color: #fff;
  font-family: Verdana, sans-serif;
  font-weight: bold;
  width: 100%;
  max-width: 400px;
}


#info-form button {
  display: block;
  margin-bottom: 10px;
}

#info-form .country-buttons {
    display: flex;
    gap: 10px;
  }

.banner-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

/* CSS for the signature preview */

#signature-preview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 80px;
  margin-right: 50px;
  margin-top: 50px;
  margin-bottom: 10px;
 
  height: 80%;
  border-radius: 25px;
  background-size: cover;
  background-position: 100% 100%;
  background-image: url("assets/background_esoft_flow.png");
}

#signature-preview-container .preview-constant {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Verdana, sans-serif;
  font-size: 20px;
  color: #E7E9EF;
  font-weight: bold;
}

#preview-card {
  width: 90%;
  
  background-color: white;
  border-radius: 25px;
}

#signature-preview-container p {
 
  font-family: Verdana, sans-serif;
  margin-right: auto;
}

.logo-container {
  display: flex;
  align-items: flex-start;

  margin-top: 10px;
  margin-bottom: 0px;
}

.logo-container img {
  width: 100px;
  height: auto;
  margin-right: 10px;
}

.text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
}

.text-container p {
  margin: 0;
  font-size: 12px;
  margin-top: 0.1px;
    margin-bottom: 0.1px;
    margin-left: 0.1px;
    margin-right: 0.1px;
    line-height: 16px;
}


.banner-image {
  margin-top: 10px; 
 
}


.tc-text {

  font-size: 8px;
  word-wrap: break-word;
  width: 80%;
  color: #d7d8e2;
}


.text-container .sig-fullname {
  color: #FF642B;
  font-weight: bold;
}

.text-container .sig-title {
  color: #0B0C26;
  font-weight: bold;
}

.text-container .sig-numberemail {
  color: #0B0C26;
}

.text-container .sig-links {
  color: #FF642B;
}

.text-container .sig-links a {
  color: #FF642B;
  text-decoration: none;
}

.text-container .sig-city {
  color: #0B0C26;
}

.instruction-text {
  width: 100%;
  color: white;
  font-family: Verdana, sans-serif;
  font-size: 12px;
}

.copy-button {
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  background-color: #FF642B;
  color: #fff;
  font-family: Verdana, sans-serif;
  font-weight: bold;
  width: 200px;
}

@media (max-width: 1300px) {
  #container {
    flex-direction: column;
    
  }
  #fill-info-container {
    margin-right: 50px;
  }
   #preview-card {
        min-width: 0px;
  }
}
