* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
}
.container {
    display: flex;
    width: 800px;
    height: 500px;
    margin: 50px auto;
    border: 1px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.left-panel {
    flex: 1.5;
    background: linear-gradient(to bottom, #104492, #478ac9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 80%;
    height: 120px;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-containerSF {
    width: 80%;
    height: 120px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}


.right-panel {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    margin-bottom: 20px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 14px;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    border: 1px solid #E8E8E8;
    background: #E8E8E8;
    border-radius: 5px;
    font-size: 14px;
}

button {
    margin-top: 20px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #000;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
}

.olvide-link {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #f29232;
    text-decoration: none;
}

.titleForm{
    font-size: 1.4em !important;
    color: #4A4A4F;
    display: inline-block;
    margin-bottom: 2.5rem;
    text-align: center;
}

.buttonset {
  margin: 20px auto 0 auto; 
  width:150px;
  padding: 10px;
  cursor: pointer;
  /*display: block;*/
}

.failureNotification {
    margin-top:10px;
    font-size: 0.9em !important;
    color: #f00 !important;
    font-style: italic !important;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column; 
        width: 100vw;
        height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .left-panel{
        margin-top: 0;
        /*height: 100%;*/
        max-height:75px;
    }

    .right-panel {
        /*width: 100%;*/
        flex:none;
        padding: 30px;
    }

    .titleForm {
        margin:0px;
        padding:0px
    }


        .image-containerSF {
    max-width: 100%;
    height: 50%;
    
  }
}