.add-pet-root {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--bg-color);
    overflow: hidden;
}

.add-pet-back-button {
    width: 30%;
    min-width: 340px;
    height: 3%;

    color: blue;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;

    margin: 10px;
}

.add-pet-back-button:hover {
    cursor: pointer;
}

.add-pet-panel {
    width: 30%;
    min-width: 340px;
    height: 80%;
    min-height: 480px;

    background-color: var(--fg-color);
    border-radius: 20px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 0 15px 3px rgb(206, 206, 206);
}

.delete-pet-button {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: blue;

    border-radius: 5px;

    background-color: rgb(207, 149, 221);
}

.add-pet-logo-container {
    width: 65px;
    height: 65px;

    background: linear-gradient(to bottom right, rgb(68, 185, 113), rgb(92, 85, 189));

    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    margin-bottom: 10px;
}

.add-pet-title-element {
    height: 10%;
    width: 80%;

    color: Black;

    text-align: center;

    font-size: 25px;
    font-weight: bold;
}

.add-pet-description-element {
    height: 10%;
    width: 80%;

    color: Black;

    text-align: center;

    font-size: 16px;
    font-weight: medium;
}

.add-pet-panel>.form-input {
    height: 7%;
}

.create-pet-submit {
    height: 10%;
    width: 80%;

    color: white;
    background: linear-gradient(to right, rgb(68, 185, 113), rgb(92, 85, 189));

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;

    margin: 25px;
}