* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


:root {
  --blue: #47B5FF;
  --black: #26282B;
  --grey: #353941;
  --yellow: #FFC107;
  --white: #FFFFFF;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-image: url('../Assets/HeaderPhoto/backgroundlogin.png');
    background-size: cover;
}

.wrapper {
    position: relative;
    width: 400px auto;
    height: 550px;
    background-color: rgba(19, 19, 19, 0.384);
    box-shadow: 0 0 50px rgb(37, 37, 37);
    border-radius: 15px;
    padding: 40px; 
    stroke: #201e1e;
    transition: 0.2s;
    /* border: 1px solid red; */
}
.form-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* border: 1px solid red; */
}

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

h2{
    margin-bottom: 60px;
    font-size: 30px;
    color: white;
    text-align: center;
}

.input-group{
    position: relative;
    margin: 30px 0;
    border-bottom: 2px solid white;
}

.input-group label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 16px;
    color: white;
    pointer-events: none;
    transition: .5s;
}

.input-group input {
    width: 320px;
    height: 40px ;
    font-size: 16px;
    color: white;
    padding: 0 5px;
    background: transparent;
    border: none;
    outline: none;
}

.hidden {
    display: none;
}

.input-group i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 20px;
    color: white;
    cursor: pointer;
    z-index: 1;
  }
  


.input-group input:focus~label,
.input-group input:valid~label{
    top: -5px;
    color: var(--blue);
}

.remember{
    padding-top: 30px;
    margin: -5px 0 15px 5px;
    padding-bottom: 10px;
}

.remember label{
    color: white;
    font-size: 14px;
}

.remember label input{
    accent-color: var(--blue);
}

button {
    position: relative;
    width: 100%;
    height: 40px;
    background: rgb(0, 0, 0);
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    outline: none;
    transition: 0.5s;
}

button:hover{
    background: var(--blue);
    color: black;

}

.signUp-link {
    font-size: 14px;
    text-align: center;
    margin: 15px 0;

}

.signUp-link p{
    color: white;
}

.signUp-link p a{
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}

.signUp-link p a:hover{
    text-decoration: underline;

}

.error {
    color: red !important;
}

.required-label {
    color: red;
    font-size: 12px;
    position: absolute;
    top: calc(100% + 5px);
    left: 5px;
}


@media(max-width: 767px){

    .wrapper {
        scale: 0.9;
        position: relative;
        width: 400px auto;
        height: 600px;
        background-color: rgba(19, 19, 19, 0.384);
        box-shadow: 0 0 50px rgb(37, 37, 37);
        border-radius: 15px;
        padding: 40px; 
        stroke: #201e1e; 
    }

}