body {
    background-color: #fff;
}

.profile {
    display: inline-block;
    margin: 1rem;
    padding: 1rem;
    border: 1px solid #26457D;
    border-radius: 10px;
    width: 150px;
}

    .profile:hover, .profile:focus {
        border-color: #26457D;
        background-color: #F0F8FF;
    }

    .profile.active {
        border-color: #26457D;
        background-color: #F0F8FF;
        border: 2px solid #26457D;
    }

.profile-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #6495ED;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-weight: bold;
}

    .profile-circle.mother {
        background-color: #A0D6D1;
    }

    .profile-circle.son {
        background-color: #FFD700;
    }

.profile-name {
    font-weight: bold;
}

.profile-role {
    color: #666;
}

.btn-primary {
    background-color: #26457D;
    border-color: #26457D;
}

    .btn-primary:hover {
        background-color: #1f3b68;
        border-color: #1f3b68;
    }

.left-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #26457D;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: -1;
}

.container-main {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Para telas maiores */
@media (min-width: 768px) {
    .container-main {
        top: 80px;
        bottom: 80px;
        left: 80px;
        right: 80px;
    }
}

/* Para telas menores */
@media (max-width: 767px) {
    .container-main {
        top: 20px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}