body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.card-custom {
    border-radius: 25px;
}

.card-custom .card-img-top {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    object-fit: cover;
    height: 200px; /* Adjust the height as needed */
}

form {
    max-width: 1200px;
    margin: auto;
}
.form-control {
    border-radius: 5px;
}
