:root{
    --color: #e6007e;
    --txt: rgb(185,185,185)
}

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: var(--txt);
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    width: 100%;
}
body {
    min-height: 100vh;
    min-width: 100vw;
}

.content {
    width: 100%;
    height:100vh;
    display: flex;
    flex-flow: row wrap;
}

.logo{
    display: flex;
    flex-flow: row wrap;
}

/* picture side*/

.picture {
    position: relative;
    width: 50vw;
    min-width: 100px;
    height: 100vh;
    background-image: url(./images/background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex: 0 0 40%;
    width: 40%;
}

.logo {
    height:auto;
    background-color:#021937;
    position: relative;
    top:20vh;
    gap:1vh;
    padding:15px 0;
    justify-content: center;
    align-items: center;
}

h1{
    color:white;
    text-align: center;
    padding-top: 15px;
}

.owntra {
    height: 10vh;
    align-items: center;
}

/*right side*/

.right{
    flex: 0 0 60%;
    width: 50vw;
    background-color: rgb(2, 25, 55);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.left{
    padding-left: 3vw;
}

.top-text{
    font-weight: 500;
    width: 90%;
    font-size: 1.2rem;
}

.solo {
    margin: 40px 0 80px;
}

.form-title{
    width: 100%;
    font-size: 1.2rem;
    font-weight: 500;
}

.form{
    background-color: rgb(2, 25, 55);
    box-shadow: 0 10px 20px -2px rgb(22, 22, 22);
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.input{
    display: flex;
    flex-flow: column wrap;
    width: 40%;
    font-size: 0.7rem;
    text-transform: uppercase;
}

input:focus{
    outline: none;
    border: 2px solid var(--color);
}

.error {
  font-family: customFontBold;
  font-size: .7rem;
  color: rgb(255, 69, 100);
  position: absolute;
}

input[type="password"]:invalid {
    border-color: red;
}

button {
    background-color: rgb(2, 25, 55);
    color: #e6007e;
    border-color: #e6007e;
    padding: 8px;
    border-radius: 8px;;
}

.log-in{
    display: flex;
    gap: 5px;
    margin-bottom: 0px;
    padding-top: 8px;
}

a{
    text-decoration: none;
    color: var(--color);
    font-weight: 700;
    padding-left: 8px;
}

.picture p {
    position: absolute;
    bottom: 10px; /* Adjust as needed */
    right: 10px;  /* Adjust as needed */
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.575);
    margin: 0;
}