@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
::before,
::after {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.not-footer {
    flex: 1;
}


body.login__sabkophone {
    height: calc(100vh - 143px);
    overflow: hidden;
}

header {
    box-shadow: 0 0 5px #00000024;
}

.section {
    padding: 50px 0;
}

/* header {
  height: 70px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding: 0 15px;
}

.header-left>a {
    display: block;
    padding: 25px 0;
}

.header-left>a img,
.header-right>a img {
    width: 150px;
}

section {
    background-size: cover;
    height: 100%;
}

.header-left>a img {
    width: 200px;
}

.flex {
    display: flex;
}

.flex-between {
    justify-content: space-between;
}

.flex-middle {
    align-items: center;
}

.flex-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap {
    gap: 10px;
}

.header-middle p {
    font-weight: 500;
    font-size: 40px;
    font-weight: bold;
    color: #0f6a70;
}

.header-middle p span {
    font-size: 22px;
    font-weight: 500;
    display: block;
    color: #222;
    text-align: center;
}

.form__container {
    max-width: 980px;
    padding: 30px;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.form__container form {
    padding: 30px;
    width: 100%;
    background: #fafafa;
    box-shadow: 0 2px 3px #2223;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    width: 500px;
    max-width: 500px;
}

.form__container form label {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    color: #333;
}

.form__container form label input {
    display: block;
}

.form__container form label input[type="text"],
.form__container form label input[type="tel"],
.form__container form label input[type="date"],
.form__container form label input[type="email"],
.form__container form label input[type="password"] {
    display: block;
    border: 1px solid #e1e1e1;
    background: #eee;
    border-radius: 4px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    padding: 8px 15px;
    margin-top: 5px;
    width: 100%;
    height: 40px;
    outline: none;
}

.form__container form label input:focus {
    border: 1px solid #00a552;
}

.form__container form label span {
    color: red;
}

.btn {
    display: inline-block;
    color: #fff;
    padding: 12px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    background: #06a355;
    overflow: hidden;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    transition: all 0.45s ease-Out;
    -webkit-transition: all 0.45s ease-Out;
    -moz-transition: all 0.45s ease-Out;
    -ms-transition: all 0.45s ease-Out;
    -o-transition: all 0.45s ease-Out;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    outline: none;
    border: none;
    text-decoration: none;
  }

  .btn-gray {
    background-color: #bfc0c0;
    color: #111;
    padding: 8px 15px;
    font-size: 12px;
  }

  .bottom-header .btn-gray span {
    font-size: 12px;
    color: #111;
  }
  .bottom-header {
    padding: 10px;
    background: #00a552;
  }

  .bottom-header span {
    font-size: 14px;
    color: #fff;
  }

.form__container h3 {
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
    color: #00a552;
    text-transform: uppercase;
    font-size: 20px;
}

footer {
    background: #00a552;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 0;
}

.header-middle {
    margin-right: auto;
}


@media (max-width: 962px) {
    .form__container {
        padding: 15px;
        align-items: flex-start;
    }

    .header-middle {
        margin: 0;
        margin-top: auto;
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

    .header-middle p {
font-size: 30px;}

    .header-left>a img,
    .header-right>a img {
        width: 100px;
    }

    .header-left>a img {
        width: 150px;
    }
}
