* {
    font-family: "Fira Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #1f44ff;
    background: linear-gradient(62deg,rgba(31, 68, 255, 1) 0%, rgba(164, 69, 166, 1) 100%, rgba(252, 70, 107, 1) 100%);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

h1 {
    font-family: "Arvo", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    padding: 30px;
}

form {
    background-color: white;
    padding: 30px 60px 30px 60px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    gap: 10px;
}

form div {
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-weight: 300;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.form-control::placeholder {
    font-size: 14px;
    font-style: italic;
}

.form-control:focus {
    border: 1px solid #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

select.form-control {
    padding-left: 11px;
}

select.form-control:invalid {
    color: #757575;
    font-style: italic;
    font-size: 14px;
}

select.form-control option {
    color: black;
    font-style: normal;
    font-weight: 300;
}

.submit_btn {
    width: 70%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #007bff;
    background-color: #007bff;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.submit_btn:hover {
    background-color: #0f71da;
}

.create_new {
    color: black;
    font-size: 14px;
    text-decoration: none;
}

.create_new:hover {
    color: rgb(59, 59, 59);
    text-decoration: underline;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    width: 100%;
    padding: 0;
    font-size: 14px;
}

footer p {
    margin: 0;
}

.github_link {
    font-family: "Arvo", serif;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    font-style: normal;
    color: rgb(32, 0, 105);
}

.github_link:hover {
    font-weight: 600;
}