@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

:root {
    --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    /* --mobile-bg-image: url("../images/bg-image.png"); */
    /* --desktop-bg-image: url("../images/bg.jpg"); */

}
* {
    box-sizing: border-box;
}

body {
    /* position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Lato', sans-serif; */
        /* background-color: rgb(168, 216, 236); */
    background-color: #27689d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--mobile-bg-image);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.8; /* Adjust this value for desired opacity (0.0 to 1.0) */
    z-index: -1;
}

.content {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color:#27689d;
}

.container {
    /* border-radius: 10px;
    margin: 30px auto;
    width: 400px;
    border: 1px solid #27689d;
    box-shadow: 0px 0px 5px 0px rgba(8, 32, 70, 0.6), 0px 0px 15px 1px rgba(8, 32, 70, 0.6); */

    margin: 30px auto;
    width: 400px;
      
}

#login-title {
    /* text-align: center;
    color: #5635f8;
    border-radius: 1px;
    margin-bottom: 4px; */

    text-align: center;
    color:White;
}

@media screen and (max-width: 767px) {
  #login-title {
    display: none;
    
  }
}

.form-control {
    /* border: 1px solid #27689d;
    display: block;
    margin-top: 4px; */

    /* background-color: #333; */
    background: transparent;
    border: 1px solid #27689d;
    display:block;
}

label {
    /* display: inline-block;
    margin: 5px 0;
    color: #5635f8; */

    display: inline-block;
    margin: 10px 0;
    color: white;
    background: transparent;
}

input[type='email'],
input[type='password'] {
    border: none;
    outline: none;
    border: 1px solid #dedede;
    border-radius: 2px;
    display: block;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}

.btn {
    /* display: block;
    color: #5635f8;
    background-color: white;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 40%;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(8, 32, 70, 0.6), 0px 0px 15px 1px rgba(8, 32, 70, 0.6); */

    display: block;
    /* display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; */
    color: black;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    font-size: 18px;
    margin-top: 20px;
    margin-left: 40%; /* margin-left no needed for display flex */
    padding-left: 15px; /* padding-top for display flex */
    padding-right: 15px; /* padding-bottom for display flex */
}

.btn:hover {
    border-color: #9c88ff;
    color: #9c88ff;
}

/* .signup-link {
    margin-top: 20px;
    vertical-align: middle; 
} */

#signup-title {
    /* text-align: center;
    vertical-align: middle;
    background-color: white;
    border-radius: 10px;
    font-size: 14px;
    padding: 0px 3px 3px 3px;
    color: #5635f8;
    box-shadow: 0px 0px 5px 0px rgba(8, 32, 70, 0.6), 0px 0px 15px 1px rgba(8, 32, 70, 0.6); */

    text-align: center;
    font-size: 14px;
    color:whitesmoke;
}

#signup-title:hover {
    color: #9c88ff;
}

.error {
    background: #F2DEDE;
    color: #A94442;
    text-align: center;
    padding: 10px;
    width: 95%;
    border-radius: 5px;
    margin: 20px auto;
}


