.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: #1376d3; /* Change border color when animation completes */
    }
}

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg); /* Rotate the image by 360 degrees */
    }
}
#typing-effect {
    text-align: center;
    overflow: hidden; /* Hide overflow characters */
    white-space: nowrap; /* Prevent text wrapping */
    animation: typing 5s steps(40, end); /* Apply the typing animation */
  }
  
  /* Keyframes for the typing animation */
  @keyframes typing {
    from { width: 0; } /* Start with no width */
    to { width: 100%; } /* End with full width */
  }
  