/*
* Author: Ashraf Uzzaman (WebCoder Ashraf)
*Facebook: https://facebook.com/ashraf.uzmahim
* Gihub: https://github.com/AshrafUzzaman04
* linkedIn: https://www.linkedin.com/in/ashraf-uzzaman/
*/

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #fff 50%, #004cbd 50%);
}
.container {
    position: relative;
    min-width: 300px;
    max-width: 800px;
    width: 100%;
    padding: 25px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin: 50px 20px 50px 20px;
}
.container header {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}
.container form {
    margin-top: 30px;
}
.openFile {
    border: 1px solid lightgrey;
    padding: 6px 12px 6px 12px;
    border-radius: 32px;
    cursor: pointer;
}
#cvUpload {
    display: none;
}
.input_group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
@media screen and (max-width: 510px) {
    .input_group {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 0 !important;
    }
}
form .field {
    width: 100%;
    margin-bottom: 20px;
}

form .field label {
    font-size: 14px;
}
form .input-field {
    position: relative;
    height: 55px;
    width: 100%;
}
.input-field input,
select {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 8px;
    padding: 0 15px;
    border: 1px solid #d1d1d1;
}
.invalid input {
    border-color: #d93025;
}
.invalid select {
    border-color: #d93025;
}
.input-field .show-hide {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #919191;
    cursor: pointer;
    padding: 3px;
}
.field .error {
    display: flex;
    align-items: center;
    margin-top: 6px;
    color: #d93025;
    font-size: 13px;
}
.invalid .error {
    display: flex;
}
.error .error-icon {
    margin-right: 6px;
    font-size: 15px;
}
.create-password .error {
    align-items: flex-start;
}
.create-password .error-icon {
    margin-top: 4px;
}
.button {
    margin: 25px 0 6px;
}
.button input {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    background-color: #303030;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button input:hover {
    background-color: #111;
}

.button input:active {
    transform: scale(0.95);
}
