@import url('./variables.css');

body{
    margin: none;
    background-color: var(--cy-bg-red);
    overflow: auto;
    display: flex;
    flex-direction: row;
}

h1{
    color: #fff;
    font-family: var(--font-family);
    font-size: 2.125rem;
    line-height: 1.235;
    font-weight: 700;
}

h3 {
    color: #fff;
    font-family: var(--font-family);
}

p{
    color: #fff;
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.4375em;
}

a{
    color: #fff;
    font-family: var(--font-family);
    font-size: 0.875rem;
    line-height: 1.43;
    font-weight: 700;
}

input{
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: solid 1px #fff;

    background-color: transparent;

    padding: 1em;
    margin-bottom: 1em;
    width: 80%;
    font-family: var(--font-family);
    color: #fff;
}
::placeholder {
    color: #fff;
    opacity: 1; /* Firefox */
  }

input:focus{
    outline: none;
    border-left: none;
    border-right: none;
    border-bottom: solid 1px #fff;

    background-color: transparent;
}

button {
    background-color: var(--cy-button-bg);
    border: none;
    border-radius: 16px;
    padding: 1em;
    width: 32%;
    color: #fff;
    font-family: var(--font-family);
}

button:hover{
    box-shadow: 4px 8px 16px 4px rgba(0,0,0,0.2);
    cursor: pointer;
}

form{
    width: inherit;
    display: inherit;
    align-items: inherit;
    justify-content: inherit;
    flex-direction: inherit;
}

.container{
    display: flex;
    width: 100%;
    height: 80vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

img{
    width: 20%;
}

.login {
    display: flex;
    width: 32%;
    padding: 2em;
    /* border: solid #fff 1px; */
    border-radius: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

