#prof-cont {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#prof-content {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
    height: inherit;
    background-image: url(../images/login_bg_port\ 1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#profilebox {
    box-sizing: border-box;
    position: absolute;
    top: 60%;
    width: max-content;
    height: auto;
    left: 50%;
    min-width: 70%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(0.263vw);
    border: 0.052vw solid #B3B3B3;
    padding: 3.021vw 4.375vw 0 3.021vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2.083vw;
    border-radius: 2.24vw;
}

#profileimg {
    position: relative;
    border-radius: 50%;
    border: 2px solid rgba(171, 232, 44, 1);
    box-shadow: 0 0 10px rgba(171, 232, 44, 0.6);
    top: -8.89vw;
}

#profile-details {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 40%;
    height: 12.21vw;
    top: -6.8vw;
    background: #434343;
    border-radius: 7px;
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 500;
    font-size: 1.32vw;
    line-height: 2.73vw;
    text-align: center;
    color: #FFFFFF;
}

.submitbtn2 {
	position: relative;
	top: -6.8vw;
    width: 40%;
    cursor: pointer;
    border: none;
    outline: none;
    box-sizing: border-box;
    height: 3.385vw;
    background: #91D603;
    border: 0.052vw solid #BAFA34;
    border-radius: 0.365vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.013vw;
    color: #FFFFFF;
}

@media screen and (max-width: 431px) {
    #prof-content {
        background-image: url(../images/login_bg_port_mob.png);
    }

    #profilebox {
        top: 50%;
        gap: 6vw;
        border: 0.15vw solid #B3B3B3;
        backdrop-filter: blur(0.76vw);
        border-radius: 6.45vw;
    }

    #profileimg {
        top: -21.4vw;
        width: 36.77vw;
        height: 36.77vw;
    }

    #profile-details {
        gap: 2.56vw;
        border-radius: 1.79vw;
        font-size: 3.08vw;
        line-height: 7.18vw;
        width: 75%;
        height: 36.21vw;
        top: -21.4vw;
    }
    
    .submitbtn2 {
    	top: -16.4vw;
        width: 75%;
        height: 9.93vw;
        border: 0.15vw solid #BAFA34;
        border-radius: 1.05vw;
        font-weight: 700;
        font-size: 3.45vw;
        line-height: 4.87vw;
        letter-spacing: 0.04vw;
    }
}