@font-face {
    font-family: "Century Gothic";
    src: "./assets/fonts/GOTHIC.TTF";
}

:root{
    --succes-color: #2ecc71;;
    --error-color: #e74c3c;
}

html{
    background-color:#f2f5f6;
    /* width: 100%;
    height: 100%; */
    overflow-x: hidden;
    font-family: 'Century Gothic', sans-serif;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
 }

.content{
    width: 100%;
    display: flex;
    margin-top: 150px;
    position: relative;
    flex-direction: column;
    align-items: center;
}

.job-application-form{
    display: flex;
    flex-direction: column;
    width: 750px;
}

.job-contet{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 750px;
}

.form-content{
    width: 750px;
}
.footer{
    position: relative;
    font-size: 12px;
    margin-top: 10px;
    width: 100%;
    color: rgb(32, 32, 32);
    text-align: center;
}

.address{
    width: 250px;
    color: rgb(32, 32, 32);
    margin: auto;
    margin-top: 10px;
    position: relative;
}

.address-info{
    font-size: 12px;
    text-align: center;
   
}

.address-header{
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

.submit-button{
    font-size: 18px;
    margin-left: 16%;
    width: 125px;
    height: 50px;
    padding: 10px;
    color: rgb(216, 216, 216);
    background-color: #8a8a8a;
    border: 1px solid rgb(216, 216, 216);
    border-radius: 5px;
    cursor: pointer;
}

.cover-later{
    font-family: 'Century Gothic', sans-serif;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    background: rgba(231, 231, 231, 0.747);
    width: 350px;
    height: 150px;
  }

  .logo{
    margin-top: 10px;
    margin-left: 25%;
    height: 82.2px;
    width: 138.3px;
}

.header{
    z-index:10 ;
    position: fixed;
    width: 100%;
    height: 97px;
    background: white;
    box-shadow: 0px 3px 4px #aaaaaa;
}

@media screen and (max-width: 600px) {
    
    .logo{
        margin-left:30%;
        align-items: center;
    }
    .content{
        margin: auto;
        height: 100vh;
        width: 300px;
        margin-top: 20%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .job-application-form{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 300px;
    }

    .job-contet{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 300px;
    }

    .form-content{
        width: 300px;
    }

    .submit-button{
        font-size: 18px;
        margin-left: auto;
        width: 125px;
        height: 50px;
        padding: 10px;
        color: rgb(216, 216, 216);
        background-color: #8a8a8a;
        border: 1px solid rgb(216, 216, 216);
        border-radius: 5px;
        cursor: pointer;
    }

    .cover-later{
        font-family: 'Century Gothic', sans-serif;
        font-size: 14px;
        border: none;
        border-radius: 8px;
        background: rgba(231, 231, 231, 0.747);
        width: 300px;
        height: 150px;
      }
    
}


.title{
    word-wrap: normal;
    color: rgb(32, 32, 32);
}


.job-title{
    color:rgb(32, 32, 32);
}

.job-subtitle{
    color: rgb(32, 32, 32);
}

.job-info{
    color: rgb(32, 32, 32);
}

li{
    color: rgb(32, 32, 32);
}

 


.form-element{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.form-input{
    height: 35px;
	padding-left: 15px;
	border: none;
	border-radius: 20px;
   
    margin-bottom: 20px;
    background: rgba(231, 231, 231, 0.747);
    width: 300px;
}

.form-label{
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    padding-left: 15px;
    padding-bottom: 10px;
    color: rgb(32, 32, 32);
    display: block;
}

.file-upload{
    width: 100px;
    display: inline-block;
    background-color: rgba(131, 131, 131, 0.993);
    color: white;
    padding: 0.5rem;
    border-radius: 0.3rem;
    cursor: pointer;
    margin-top: auto;
    transition: background-color .3s, transform .3s, background-color .3s;
}

.file-upload:hover{
    color:rgb(65, 65, 65);
    transition: background-color .3s, transform .3s, background-color .3s;
    background-color: rgba(200, 233, 248, 0.993);
}

.filename{
    border-width: 1px;
    border-style: solid;
    border-left-style: none;
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
    padding-top: 0.25rem;
    padding-left: 0.5rem;
    height: 30px;
    width: 250px;
    color:white;
    margin-top: auto;
}

.upload-file-wrapper{
    display: flex;
    flex-direction: row;
}
  
.file-upload-error{
    margin-left: 10px;
    color: rgb(235, 53, 53);
}

.submit-button:hover{
    background-color: #00acd7;
}

.requried{
    color:red;
}

.success{
    border-color: var(--succes-color);
}

.error{
    border-color: var(--error-color);    
}
  
small{
    color: rgba(255, 0, 0, 0);
}

.error small{
    transition: color .1s, transform .1s, color .5s;
    color: rgb(255, 0, 0);
}