*{
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.content {
    width: 80%;
    min-height: fit-content;
    border-radius: 5px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 30px;
    margin-bottom: 30px;

}

.content .my-style{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.content .my-style .my-image{
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .my-style .my-image img{
    height: 100%;
}

.content .my-style h2 {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: green;
}

.content h4{
    margin-bottom: 15px;
}

.content form {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.content form .data {
    width: 100%;
    height: 40px;
    background: transparent;
    border-radius: 20px;
    border: 2px solid green;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.content form .data input {
    background-color: transparent;
    font-size: 16px;
    color: #333;
    outline: none;
    border: none;
    width: 80%;
    margin-bottom: 5px;
}

.content form .data input::placeholder {
    color: #333;
}

.content form select{
    width: 80%;
    background-color: transparent;
    font-size: 16px;
    outline: none;
    border: none;
}

.content form .data .verfy{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 15px;
    margin-top: 2px;
}

.content form .data .verfy::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

.content form .data .verfy::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

.content form .data i {
    font-size: 22px;
    color:  green;
}

.content form a {
    width: 100%;
    direction: rtl;
    color: green;
    font-size: 16px;
    margin: 5px 0;
    font-weight: bold;
}

.content form button {
    width: 100%;
    height: 42px;
    font-size: 18px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: green;
    color: white;
    outline: none;
    border: none;
    box-shadow: inset 8px 5px 10px #111;
}

.content form  .regester{
    width: 100%;
    height: 42px;
    font-size: 18px;
    font-weight: normal;
    border-radius: 20px;
    margin-top: 10px;
    text-decoration: none;
    text-align: center;
    color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 8px 5px 10px rgba(34, 34, 34, 0.8);
}

.my-media{
    width: fit-content;
    height: fit-content;
    position: fixed;
    bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.my-media a{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-media a i{
    font-size: 25px;
}

.content form .avilable{
    padding: 10px 0px;
    width: 100%;
    text-align: center;
    min-height: 42px;
    word-wrap: break-word;
    min-height: auto;
    font-size: 16px;
    border-radius: 20px;
    background-color: white;
    color: green;
    box-shadow: inset 8px 5px 10px rgba(1, 197, 34, 0.8);
    word-wrap: break-word;
}

.content form .error{
    padding: 10px 0px;
    width: 100%;
    text-align: center;
    min-height: 42px;
    word-wrap: break-word;
    min-height: auto;
    font-size: 16px;
    border-radius: 20px;
    background-color: white;
    color: darkred;
    box-shadow: inset 8px 5px 10px rgba(255, 0, 0, 0.8);
    word-wrap: break-word;
}