@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

* {

    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    direction: rtl;

}

.logo {
    margin: 40px, 0;
    text-align: center;
}

.logo img {

    width: 200px;
}

.logo p {
    font-size: 30px;
    font-weight: 600;
    color: #0c9c8b;
}

.form-old-student {
    text-align: center;
}

.form-old-student p {
    font-size: 24px;
    margin-top: 25px;
}

.form-old-student input {
    width: 50%;
    margin-bottom: 10px;
    margin: 0;

}

.form-old-student input[type="submit"] {
    font-size: 14px;
    color: white;
    background-color: #0c9c8b;
    border: none;
    height: 50px;

    border-radius: 10px;
}

/* new form */
.wrapper {
    max-width: 90%;
    width: 100%;
    background: #fff;
    margin: 20px auto;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.125);
    padding: 30px;
}

.wrapper .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0c9c8b;
    text-transform: uppercase;
    text-align: center;
}

.subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #f0d80a;
    text-transform: uppercase;
    text-align: right;
}

.wrapper .form {
    width: 100%;
}

.wrapper .form .inputfield {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.wrapper .form .inputfield label {

    width: 200px;
    color: #757575;
    margin-right: 20px;
    font-size: 14px;

}

.wrapper .form .inputfield .input,
.wrapper .form .inputfield .textarea {
    width: 100%;
    outline: none;
    border: 1px solid #d5dbd9;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.wrapper .form .inputfield .textarea {
    width: 100%;
    height: 125px;
    resize: none;
}

.wrapper .form .inputfield .custom_select {
    position: relative;
    width: 100%;
    height: 37px;
    text-align: center;
}

.wrapper .form .inputfield .custom_select:before {
    content: "";
    position: absolute;
    top: 12px;
    right: 10px;
    border: 8px solid;
    border-color: #d5dbd9 transparent transparent transparent;
    pointer-events: none;
    text-align: center;
}

.wrapper .form .inputfield .custom_select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    width: 100%;
    height: 100%;
    border: 0px;
    padding: 8px 10px;
    font-size: 15px;
    border: 1px solid #d5dbd9;
    border-radius: 3px;
    text-align: center;
}


.wrapper .form .inputfield .input:focus,
.wrapper .form .inputfield .textarea:focus,
.wrapper .form .inputfield .custom_select select:focus {
    border: 1px solid #0c9c8b;
    text-align: center;
}

.wrapper .form .inputfield p {
    font-size: 14px;
    color: #757575;
}

.wrapper .form .inputfield .check {
    width: 15px;
    height: 15px;
    position: relative;
    display: block;
    cursor: pointer;
}

.wrapper .form .inputfield .check input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.wrapper .form .inputfield .check .checkmark {
    width: 15px;
    height: 15px;
    border: 1px solid #0c9c8b;
    display: block;
    position: relative;
}

.wrapper .form .inputfield .check .checkmark:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 2px;
    width: 5px;
    height: 2px;
    border: 2px solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(-45deg);
    display: none;
}

.wrapper .form .inputfield .check input[type="checkbox"]:checked~.checkmark {
    background: #0c9c8b;
}

.wrapper .form .inputfield .check input[type="checkbox"]:checked~.checkmark:before {
    display: block;
}

.wrapper .form .inputfield .btn {
    width: 100%;
    padding: 8px 10px;
    font-size: 15px;
    border: 0px;
    background: #0c9c8b;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    outline: none;
}

.wrapper .form .inputfield .btn:hover {
    background: #f0d80a;
}

.wrapper .form .inputfield:last-child {
    margin-bottom: 0;
}

table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    font-size: 20px;
    margin-top: 20px;
}

th {
    background-color: #0c9c8b;
    color: white;
    padding: 5px 0;
}

td {
    height: 50px;
    background-color: azure;
    margin: 20px;

}





.footer {
    margin-top: 50px;
    width: 100%;
    height: 200px;
    background-color: #0c9c8b;
    text-align: center;

}

.logo-footer {
    text-align: center;

}

.logo-footer img {

    margin: 20px;
    margin-left: 50px;
    height: 75px;
}

.copyRiht p {
    color: #fff;
    font-size: medium;


}

.copyRiht a {
    color: bisque;
    font-size: medium;
    text-decoration: none;

}

.error {

    color: red;
}

.logo-pa {
    margin-top: 100px;

}

@media (max-width:420px) {
    .wrapper .form .inputfield {
        flex-direction: column;
        align-items: flex-start;
    }

    .wrapper .form .inputfield label {
        margin-bottom: 5px;
    }

    .wrapper .form .inputfield.terms {
        flex-direction: row;
    }
}