* {
    box-sizing: border-box;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 50;
    background: #e3e3e3;
}

input {
    width: 316px;
    padding: 15px;
    display: block;
    position: relative;
    box-sizing: border-box;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    border-radius: 4px;
    /* font-weight: 30; */
    background: rgb(250, 250, 250);
    outline: none;
    border: none;
    height: 100%;

    border: 1px solid #707070;
    display: block;
    height: 50px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

p {
    font-size: 12px;
    font-weight: 300;
}

.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header */

.main-header {
    background-color: #ebebeb;
    border-top: 8px solid rgb(4, 108, 109);
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.49);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 20;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation a {
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
    padding: 30px 15px;
    color: rgb(28, 28, 28);
}

.logo_container {
    position: relative;
    width: max-content;
}

.logo_container img {
    object-fit: contain;
    width: 70%;
    margin-top: 15px;
}

.logo_container a {
    float: left;
    border-radius: 50%;
    /* overflow: hidden; */
    position: absolute;
    top: -50px;
    width: 125px;
    height: 125px;
    background: #ebebeb;
    clip-path: polygon(-1px 16%, 110% 16%, 110% 110%, -50% 110%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.14), 0 4px 3px rgba(0, 0, 0, 0.28);
}

.span-full {
    grid-column: 1 / -1;
}

.signup-form input {
    width: 100%;
}

.signup-form {
    padding-right: 60px;
}

/* Content */
.content {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh;
    display: grid;
    place-content: center;
}

.main-content {
    width: 1200px;
    margin: auto;
    margin-top: 180px;
    margin-bottom: 100px;
}

.info {
    width: 450px;
    height: 300px;
}

.profileInfo {
    text-align: center;
    margin-bottom: 70px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    display: block;
}

.profilePicture,
.profilePicture-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.profilePicture-container:hover::after {
    content: "Change";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    height: 100%;
    background-color: rgb(28, 28, 28, 0.7);
}

.profile-img {
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.profile-login {
    display: flex;
    align-items: center;
}

.profile-login img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0;
    margin-right: 10px;
}

.profile-login .userName {
    margin: 0;
}

.profile a {
    text-decoration: none;
    color: #000;
}

/* Error */
.error {
    grid-column: 1 / -1;
}

/* Socail Login */
.social {
    margin-top: 20px;
    padding-top: 10px;
}

/* Footer */
.footer.grid {
    place-items: unset;
    grid-template-columns: 1fr .75fr;
    display: grid;
}

.footer-terms {
    display: inline-block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding: 0px 5px;
    text-decoration: none;
    color: #919191;
}

.footer-terms-container {
    text-align: right;
}

/* Form design */
.form {
    background: rgb(255, 255, 255);
    width: 960px;
    min-height: 380px;
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
    overflow: auto;
    position: relative;
    border-radius: 15px;

    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 20px;
    place-items: center;
}

.forgot {
    float: right;
}

.btn {
    width: auto;
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    background: rgb(4, 108, 109);
    color: #FFFFFF;
    font-size: .875rem;
    float: right;
    cursor: pointer;
    letter-spacing: .0107142857em;
    font-weight: 500;
    text-decoration: none;
}

form label {
    font-size: 16px;
    display: block;
    font-weight: 300;
    margin-bottom: 10px;
}