2023-11-06 10:23:32 -05:00
|
|
|
:root {
|
|
|
|
--main-bg: #C4DFDF;
|
|
|
|
--light-bg: #F8F6F4;
|
2023-11-06 10:42:36 -05:00
|
|
|
--text-color: rgb(22, 72, 99);
|
2023-11-07 10:33:06 -05:00
|
|
|
--error-color: #EF6262;
|
2023-11-06 10:23:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-11-01 15:00:51 -04:00
|
|
|
.container {
|
|
|
|
justify-content: center;
|
|
|
|
display: flex;
|
2023-11-06 11:47:56 -05:00
|
|
|
flex-direction: column;
|
2023-11-03 17:00:22 -04:00
|
|
|
align-items: center;
|
2023-11-01 15:00:51 -04:00
|
|
|
align-content: center;
|
2023-11-05 19:12:54 -05:00
|
|
|
margin: 0;
|
2023-11-06 10:23:32 -05:00
|
|
|
background-color: var(--light-bg);
|
2023-11-02 16:28:30 -04:00
|
|
|
}
|
|
|
|
|
2023-11-06 11:47:56 -05:00
|
|
|
.sidebar {
|
2023-11-07 13:49:15 -05:00
|
|
|
background-image: url(../static/background.jpg);
|
|
|
|
background-position: center;
|
|
|
|
background-size: auto;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
height: 80vh;
|
2023-11-07 13:51:50 -05:00
|
|
|
|
2023-11-06 11:47:56 -05:00
|
|
|
}
|
|
|
|
.logo {
|
2023-11-06 10:03:59 -05:00
|
|
|
position: relative;
|
2023-11-06 11:47:56 -05:00
|
|
|
background-color: rgb(22, 72, 99, 0.7);
|
|
|
|
top: 15vh;
|
|
|
|
height: 200px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2023-11-06 10:03:59 -05:00
|
|
|
|
2023-11-06 11:47:56 -05:00
|
|
|
.logo img {
|
|
|
|
height: 14vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo img {
|
|
|
|
height: 14vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo h1 {
|
|
|
|
font-weight: 900;
|
|
|
|
font-size: 3rem;
|
|
|
|
color: var(--light-bg);
|
|
|
|
}
|
2023-11-06 10:03:59 -05:00
|
|
|
|
2023-11-03 17:00:22 -04:00
|
|
|
.form {
|
2023-11-05 19:12:54 -05:00
|
|
|
width: 60vw;
|
2023-11-03 17:00:22 -04:00
|
|
|
}
|
|
|
|
|
2023-11-02 16:28:30 -04:00
|
|
|
.form-input {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2023-11-03 17:00:22 -04:00
|
|
|
.form-input input[type='text'],
|
|
|
|
.form-input input[type='password'],
|
|
|
|
.form-input input[type='email'] {
|
2023-11-02 16:28:30 -04:00
|
|
|
background-color: #FFFFFF;
|
|
|
|
border: 1px solid #D6D9DC;
|
|
|
|
border-radius: 3px;
|
|
|
|
width: 100%;
|
|
|
|
padding: 7px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2023-11-04 10:05:32 -04:00
|
|
|
.form-input label {
|
2023-11-05 15:26:13 -05:00
|
|
|
margin-bottom: 5px;
|
2023-11-04 10:05:32 -04:00
|
|
|
}
|
2023-11-03 17:00:22 -04:00
|
|
|
|
2023-11-07 11:04:59 -05:00
|
|
|
.form-button {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-button p {
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
2023-11-07 10:33:06 -05:00
|
|
|
|
|
|
|
.error {
|
|
|
|
color: var(--error-color);
|
|
|
|
font-size: 0.85rem;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-11-04 10:05:32 -04:00
|
|
|
@media only screen and (min-width: 700px) {
|
2023-11-06 11:47:56 -05:00
|
|
|
.container {
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
align-content: center;
|
2023-11-07 13:49:15 -05:00
|
|
|
height: 100vh;
|
2023-11-06 11:47:56 -05:00
|
|
|
}
|
2023-11-03 17:00:22 -04:00
|
|
|
.sidebar {
|
|
|
|
width: 50vw;
|
2023-11-05 19:12:54 -05:00
|
|
|
margin-right: 10px;
|
2023-11-03 17:00:22 -04:00
|
|
|
}
|
2023-11-02 16:28:30 -04:00
|
|
|
.form {
|
2023-11-05 19:12:54 -05:00
|
|
|
margin-left: 30px;
|
|
|
|
padding: 20px;
|
2023-11-02 16:28:30 -04:00
|
|
|
}
|
2023-11-05 15:26:13 -05:00
|
|
|
form {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2023-11-05 19:12:54 -05:00
|
|
|
width: 700px;
|
2023-11-05 15:26:13 -05:00
|
|
|
gap: 20px;
|
|
|
|
}
|
2023-11-02 16:28:30 -04:00
|
|
|
|
2023-11-03 17:00:22 -04:00
|
|
|
.form-input {
|
2023-11-02 16:28:30 -04:00
|
|
|
align-items: flex-start; /* To avoid stretching */
|
2023-11-05 15:26:13 -05:00
|
|
|
margin-bottom: 10px;
|
2023-11-02 16:28:30 -04:00
|
|
|
}
|
2023-11-03 17:00:22 -04:00
|
|
|
.form-input input[type='text'],
|
|
|
|
.form-input input[type='password'],
|
|
|
|
.form-input input[type='email'] {
|
2023-11-05 19:12:54 -05:00
|
|
|
width: 290px;
|
2023-11-02 16:28:30 -04:00
|
|
|
height: initial;
|
|
|
|
}
|
2023-11-03 17:00:22 -04:00
|
|
|
.form-input label {
|
2023-11-05 19:12:54 -05:00
|
|
|
width: 290px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Left side of the screen */
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
background-image: url(../static/background.jpg);
|
|
|
|
background-position: center;
|
|
|
|
background-size: auto;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
height: 100%;
|
2023-11-02 16:28:30 -04:00
|
|
|
}
|
2023-11-06 10:03:59 -05:00
|
|
|
.logo {
|
|
|
|
position: relative;
|
|
|
|
background-color: rgb(22, 72, 99, 0.7);
|
|
|
|
top: 35vh;
|
|
|
|
height: 400px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo img {
|
|
|
|
height: 14vh;
|
|
|
|
}
|
2023-11-06 10:23:54 -05:00
|
|
|
|
|
|
|
.logo h1 {
|
|
|
|
font-weight: 900;
|
|
|
|
font-size: 3rem;
|
2023-11-06 10:42:36 -05:00
|
|
|
color: var(--light-bg);
|
2023-11-06 10:23:54 -05:00
|
|
|
}
|
2023-11-04 10:05:32 -04:00
|
|
|
}
|
|
|
|
|
2023-11-05 19:12:54 -05:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2023-11-06 10:03:59 -05:00
|
|
|
font-family: 'Montserrat', sans-serif;
|
2023-11-06 10:23:54 -05:00
|
|
|
font-size: 16px;
|
2023-11-06 10:42:36 -05:00
|
|
|
color: var(--text-color);
|
2023-11-05 19:12:54 -05:00
|
|
|
}
|
2023-11-07 10:33:06 -05:00
|
|
|
|
|
|
|
button {
|
|
|
|
cursor: pointer;
|
2023-11-07 11:04:59 -05:00
|
|
|
padding: 0.7rem 4.5rem;
|
|
|
|
border: 0.2rem solid var(--text-color);
|
|
|
|
margin: 1;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--light-bg);
|
|
|
|
background-color: var(--text-color);
|
|
|
|
transition: all 0.15s;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
background-color: var(--light-bg);
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--text-color);
|
|
|
|
font-weight: 900;
|
2023-11-07 13:49:15 -05:00
|
|
|
}
|
2023-11-07 13:51:50 -05:00
|
|
|
|