* {
    margin: 0px;
    padding: 0px;
}

.pet-profile-form .container {
    padding: 50px 10px;
    display: flex;
    justify-content: center;
}

.pet-profile-form .container .profile-form .cancelbtn {
    border: 2px solid rgb(219, 215, 215);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.pet-profile-form .container .profile-form .cancelbtn:hover {
    background: rgb(219, 215, 215);
}

.pet-profile-form .container .profile-form .close-button {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-bottom: 15px;
}

.pet-profile-form .container .profile-form .cancelbtn i {
    font-size: 20px;
}

.pet-profile-form .container .profile-form .form-head h1 {
    font-weight: 800;
    font-size: 2rem;
}

.pet-profile-form .container .profile-form .form-head p {
    color: #121212;
    font-size: 1rem;
}

.pet-profile-form .container .profile-form .form-content .input-1 {
    margin: 10px 0px;
}

.pet-profile-form .container .profile-form .form-content .input-2 {
    margin: 10px 0px;
}

.pet-profile-form .container .profile-form .form-content .input-1 p {
    color: rgba(0, 0, 0, .8);
    font-weight: 600;
    font-size: 0.9rem;
}

.pet-profile-form .container .profile-form .form-content .input-1 input {
    border-radius: 10px;
    border: 1.5px solid #121212;
    font-size: 1rem;
    padding-left: 15px;
    padding-right: 15px;
}

.pet-profile-form .container .profile-form .form-content .input-2 p {
    color: rgba(0, 0, 0, .8);
    font-weight: 600;
    font-size: 0.9rem;
}

.pet-profile-form .container .profile-form .form-content .input-2 select {
    border-radius: 10px;
    border: 1.5px solid #121212;
    width: 100%;
    font-size: 1rem;
    padding-left: 15px;
    padding-right: 15px;
}

.pet-profile-form .container .profile-form button {
    width: 100%;
    padding: 10px 20px;
    border-radius: 50px;
    background: #7851A9;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 10px 0px;
}

.pet-profile-form .container .profile-form button:hover {
    background: #8559bb;
}