* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(247, 247, 247);
}

.container {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: fit-content;
    border: 1.5px solid rgb(192, 192, 192);
    background-color: white;
    border-radius: 10px;
    min-width: 300px;

    position: fixed;
    top: 190px;
    height: 60%;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-logo img,
.login-logo span {
    width: 25%;
    min-width: 200px;
}

.login-logo span {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    margin-top: 10px;
    white-space: nowrap;
    flex-direction: column;
    width: 90%;
    height: fit-content;
}

.signup-form {
    width: 90%;
}

.form {
    display: flex;
    flex-direction: column;
    margin: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.form label {
    margin-left: 2px;
}

.form input {
    height: 30px;
    font-family: Arial, Helvetica, sans-serif;
    text-indent: 5px;
    border-radius: 5px;
    border: 1px solid rgb(161, 161, 161);
}

.form input:hover {
    border: 1px solid white;
    box-shadow: 0 0 0 2px #ffae00;
}

.form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FFC516;
    border: 1px solid white;
}

.form.rememberme {
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    margin-left: 13px;
    align-items: center;
    margin-bottom: 10px;
}

.form.rememberme input:checked {
    color:#FFC516;
}

.form.rememberme label {
    margin-left: 7px;
    font-family: Arial, Helvetica, sans-serif;
}

.form.submit {
    align-self: center;
    width: 90%;
    height: 35px;
}

.form.submit button {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: none;
    background-color: #ffae00;
    cursor: pointer;
}

.form.submit button:hover {
    background-color: #FFC516;
    box-shadow: 0 0 0 1ptextx #FFC516;
}

.other-options {
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.other-options a {
    text-decoration: none;
    color: #ffae00;
}

.other-options a:hover {
    color: #FFC516;
}
