* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 background-image: url('back.png');
    background-repeat: no-repeat;
     background-position: center center; /* Centers the image */
  background-size: cover; /* Ensures the image covers the entire background */
  background-attachment: fixed;
  font-size: 16px;
}


.form-register {
  width: 95%;
  background: #adb1b533;
  padding: 20px;
  margin: auto;
  margin-top: 30px;
  border-radius: 4px;
  font-family: 'calibri';
  color: black;
  box-shadow: 7px 13px 37px #000;
}

.form-register h4 {
  font-size: 22px;
  margin-bottom: 20px;
}

.controls {
  width: 100%;
  background: #dee3e745;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 1px solid #1f53c5;
  font-family: 'calibri';
  font-size: 18px;
  color: #302c2c;
}

.form-register p {
  height: 40px;
  text-align: center;
  font-size: 18px;
  line-height: 40px;
}

.form-register a {
  color: #087ed5;
  text-decoration: none;
}

.form-register a:hover {
  color: white;
  text-decoration: underline;
}

.form-register .botons {
  width: 100%;
  background: #1f53c5;
  border: none;
  padding: 12px;
  color: white;
  margin: 16px 0;
  font-size: 16px;
}
.svg-container {
  display: flex;
  row-gap: 30px;
  justify-content: space-between; /* Distributes items with space between them */
  align-items: center; /* Vertically centers items */
  width: 100%; /* Optional: limit the container width */
  max-width: 400px;
  margin: 0 auto; /* Optional: center the container */
}

.svg-container2 {
  display: flex;
  row-gap: 30px;
  justify-content: space-between; /* Distributes items with space between them */
  align-items: center; /* Vertically centers items */
  width: 66%; /* Optional: limit the container width */
  max-width: 260px;
  margin: 0 auto; /* Optional: center the container */
}

.icon-container3 {
  align-items: center;
  display: flex;
  flex-direction: column;
  width:33%;
}

.icon-container2 {
  align-items: center;
  display: flex;
  flex-direction: column;
  width:50%;
}

.icon {
  height: 20%; /* Set a fixed height for consistency */
  width: auto; /* Allow width to adjust proportionally */
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}


svg path {
  opacity: 1; /* Initial opacity */
  transition: opacity 0.3s ease-in-out; /* Smooth transition */
}

svg:hover path{
  opacity: 0.5; /* Desired opacity on hover (e.g., 50% transparent) */
}

.cls-1{
  fill:#fbd433;
}
.cls-1,.cls-2
{
  fill-rule:evenodd;
}
.cls-2{fill:#141518;}

.cls-3{
  fill:blue;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

th {
  background-color: #8ccbe7;
}