:root{
    --Primary_Color: #ec0606;
    --Secondary_Color: #fa13b5;
    --Tertiary_Color: #23d40c;
    --Primary_Font: Poppins, sans-serif;
    --Secondary_Font: Montserrat, sans-serif;
    --Tertiary_Font: Catamaran, sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.company-name{
    width: 80%;
    font-size: 18px;
    text-align: center;
}
.first-part{
    width: 100%;
    height: auto;
    background-color: transparent;
    padding: 20px;
    display: flex;
    margin-top: 70px;
}
.image-part-photo{
    width: 80%;
    height: auto;
    margin-left: 10%;
}
.text-part{
    width: 50%;
    padding: 10px;  
    margin: 10px;
}
.text-part-head{
    padding: 10px;
    font-size: 32px;
    margin-bottom: 20px;
    color: rgb(9, 129, 145);
}
.text-part-text{
    line-height: 25px;
    font-size: 17px;
    color: black;
}
.image-part{
    width: 50%;
}
.space{
    width: 100%;
    height: 100px;
    background-color: whitesmoke;
}
.chose-image{
    width: 30px;
    height: 30px;
}
.choose-wrap{
    background-color: whitesmoke;
    width: 100%;
    height: 400px;
    padding: 20px;
}
.choose-header{
    margin-left: 10%;
    margin-bottom: 20px ;
}
.chose{
    width: 94%;
    margin-left: 3%;
    height: 200px;
    background-color: whitesmoke;
    display: flex;
    flex-wrap: wrap;
}
.choose-text-group{
    display: flex;
    background-color: white;
    width: 400px;
    height: 80px;
    padding: 20px;
    margin: 2px;
}
.chose-text{
    padding: 7px;
}
.Loginbox {
    width: 100%;
    margin-left: 0%;
    position: inherit;
    margin-right: 0%;
    background-color: var(--Primary-color);
    justify-content: center;
    text-align: center;
    margin-top: 5%;
}
form {
    text-align: left;
    margin-left: 40px;
    margin-right: 40px;
    display: block;
    font-size: 20px;
    border: 1px solid white;
    list-style: none
    ;
}
.Loginbox input {
    width: 80%;
    margin-bottom: 15px;
    margin-top: 15px;
    margin-left: 0%;
}

.Loginbox input[type="text"], input[type="password"] {
    border: 1px solid grey;
    border-bottom: 1px solid black;
    background-color: white;
    padding: 10px;
    font-size: 17px;
    border-radius: 5px;
}
.Loginbox input[type="submit"] {
    color: black;
    font-size: 24px;
    background-color: gold;
    padding: 8px;
    font-family: var(--Primary-font);
    margin-top: 20px;
    border: 2px solid black;
    border-radius: 30px;
}
.Loginbox input[type="submit"]:hover{
    cursor: pointer;
    background-color: rgb(9, 129, 145);
    color: gold;
}


@media screen AND (max-width:500px) {
    .company-name{
        width: 100%;
        font-size: 12px;
        text-align: center;
    }
    .first-part{
        width: 100%;
        height: auto;
        background-color: transparent;
        padding: 20px;
        display: block;
        margin-top: 0px;
    }
    .image-part-photo{
        width: 96%;
        height: 300px;
        margin-left: 4%;
    }
    .text-part{
        width: 100%;
        padding: 5px;  
        margin: 5px;
    }
    .text-part-head{
        padding: 10px;
        font-size: 22px;
        margin-bottom: 7px;
        color: rgb(9, 129, 145);
    }
    .text-part-text{
        line-height: 25px;
        font-size: 14px;
        color: black;
        font-weight: normal;
    }
    .image-part{
        width: 98%;
    }
    .space{
        width: 100%;
        height: 100px;
        background-color: whitesmoke;
    }
    .chose-image{
        width: 30px;
        height: 30px;
    }
    .choose-wrap{
        background-color: whitesmoke;
        width: 100%;
        height: 600px;
        padding: 20px;
    }
    .choose-header{
        margin-left: 10%;
        margin-bottom: 20px ;
    }
    .chose{
        width: 94%;
        margin-left: 3%;
        height: 320px;
        background-color: whitesmoke;
        display: block;
        flex-wrap: wrap;
    }
    .choose-text-group{
        display: flex;
        background-color: white;
        width: 100%;
        height: 80px;
        padding: 20px;
        margin-bottom: 10px;
    }
    .chose-text{
        padding: 5px;
    }

}