.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 21px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #0f6ead;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #eb2e15;
}
.img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid transparent; /* Start with a transparent border */
    animation: borderLoad 1s forwards, flip 1s ease-in-out;
}

@keyframes borderLoad {
    0% {
        border-color: transparent;
    }
    100% {
        border-color: #000000; /* Change border color when animation completes */
    }
}

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg); /* Rotate the image by 360 degrees */
    }
}
h2 {
    text-align: center;
    opacity: 0; /* Initially hide the text */
    animation: fadeIn 5s forwards; /* Apply the animation */
  }

  /* Keyframes for the fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0; /* Start from fully transparent */
    }
    to {
      opacity: 1; /* End with full opacity */
    }
  }

