:root {
    --Red: hsl(4, 100%, 67%);
    --Blue800: hsl(234, 29%, 20%);
    --Blue700: hsl(235, 18%, 26%);
    --Grey: hsl(0, 0%, 58%);
    --White: hsl(0, 0%, 100%);
}

* {
    font-family: 'Roboto';

}

body {
    background-color: var(--Blue800) !important;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Blue800) !important;
}

.signIn_card {
background-color: var(--White);
display: flex;
    padding: 20px;
    border-radius: 10px;
    width: 700px;
    /* height: 370px; */
    align-items: center;

}



.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.signIn_card .text h1 {
    font-weight: bold;
    font-size: 40px;
}

p {
    font-size: 15px;

}
.text {
       padding-right:  15px;
       padding-left: 10px;
        
}

.rules {
    list-style-image: url(assets/images/icon-list.svg);
    margin: 0;
    padding: 0;
    list-style-position: inside;
}
.rules li {
    margin-bottom: 10px;
 
}
form {
    display: flex;
    flex-direction: column;
        align-items: flex-start;
        gap: 10px;
}

form label {
        font-size: 12px;
            font-weight: bold;
        
}

form input {
    width: 93%;
        height: 46px;
        border-radius: 10px;
        border-color: var(--Grey);
        outline: none;
        padding: 0 0 0 20px;
    
        
}


 button {
        width: 100%;
            padding: 20px 10px;
            border: none;
            background-color: var(--Blue800);
            color: var(--White);
            border-radius: 10px;
           cursor: pointer;
           font-size: 18px;

}
 button:hover {
    background-color: var(--Red);
}
.hidden {
    display: none;
    
}
.error {
    margin: 0;
        color: var(--Red) ;
        font-size: 13px;
    
}

/* successMassage */

.successMassage {
        background-color: var(--White);
            width: 290px;
            padding: 20px;
            border-radius: 10px;
        
}
.successMassage img {
        width: 50px;
}
.successMassage h1 {
        font-size: 35px;
            font-weight: bold;

}

.errorStyle {
    border-color: var(--Red);
     color: var(--Red);
     background-color: rgb(255 98 87 / 35%);
}


@media (max-width:700px) {
    .signIn_card {
        flex-direction: column;
        padding: 0;
        margin: 20px;
    }
    .image-container {
        order: 1;
        width: 100%;
    }
    .text {
        order: 2;
        padding: 20px;
    }
    
}