@font-face {
    font-family: Gobold Regular;
    src: url('../Fonts/Gobold\ Regular.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: Gilroy Bold;
    src: url('../Fonts/Gilroy-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: Gilroy Medium;
    src: url('../Fonts/Gilroy-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

/* Reset basic styling */
body {
    display: flex;
    justify-content: center;
}

.form-group {
    margin-bottom: 1rem;
    width: 100%;
}

.form-group label {
    text-align: center;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: black;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control-file {
    display: block;
    width: 100%;
    padding: 0.375rem;
    font-size: 1rem;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-file:hover {
    border-color: #80bdff;
}

.form-control-file:focus {
    outline: 0;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem 7rem;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

/* Primary button */
.btn-primary {
    color: #fff;
    background-color: #b02123;
    border-color: #b02123;
}

.btn-primary:hover {
    color: #fff;
    background-color: #a81c1f;
    border-color: #a81c1f;
}


.container {
    width: 553px;
    height: 100vh;
    background-image: url('../images/asset-02.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

form {
    width: 100%;
    height: 66%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    padding: 20px;
}


/* upload foto */
form .post-image-collection {
    padding: 10px 0px;
    overflow: hidden;
}

form .post-image {
    position: relative;
    float: left;
    height: 152px;
    width: 170px;
    background: #f2f2f2;
    border: 1px dashed #ccc;
    padding: 0;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
}

.mrm {
    margin-right: 20px;
}

.mts {
    margin-top: 10px;
}

form .post-image .upload-section img {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    vertical-align: top;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 50px;
}

form .post-image .preview-section img {
    border-radius: 3px;
    overflow: hidden;
    margin: 0px;
}

form .post-image .icon-camera {
    display: none;
}

form .post-image input {
    display: none;
}

form .post-image.empty {
    position: relative;
    float: left;
    height: 130px;
    width: 130px;
    background: #f2f2f2;
    border: 1px dashed #ccc;
    padding: 0;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    /* margin: auto; */
}

form .post-image.empty .icon-camera {
    display: block;
    height: 100%;
    line-height: 30px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0%;
    width: 100%;
    cursor: pointer;
}

form .post-image.empty .icon-camera img {
    height: 60px;
    width: 60px;
}

form .post-image.empty input {
    cursor: pointer;
}

form .post-image p,
.file_container-orange p {
    margin: 10px 0;
    margin: 1rem 0;
    text-align: center;
    font-family: "OpenSansSemiBold", sans-serif;
}

.uppercase {
    text-transform: uppercase;
}

#list {
    float: left;
}

.thumb {
    height: 130px;
    width: 130px;
    margin-right: 20px;
    margin-top: 10px;
}

.remove_img_preview {
    position: relative;
    top: -145px;
    right: -64px;
    font-size: 20px;
    padding: 2px 5px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    background-color: #000;
}

.remove_img_preview:before {
    content: "×";
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

input::placeholder {
  text-align: center;
}