@font-face {
    font-family: "Helvetica";
    src: url("fonts/helvetica/Helvetica.ttf") format("truetype"),
        url("fonts/helvetica/Helvetica.ttf") format("truetype");
}
@font-face {
    font-family: "Helvetica-Bold";
    src: url("fonts/helvetica/Helvetica-Bold.ttf") format("truetype"),
        url("fonts/helvetica/Helvetica-bold.ttf") format("truetype");
}

body {
    background-color: lightblue;
    font-family: "Helvetica", sans-serif;
}

h1 {
    color: navy;
    font-family: "Helvetica-Bold", sans-serif;
    font-size: 60px;
}

p {
    color: black;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    max-width: 350px;
    padding: 12px 16px;
    font-size: 16px;
    
    background-color: rgb(113, 187, 255);
    border: 2px solid #000000;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #00065e;
    box-shadow: 0 0 1px #00065e;
}

.nav-container {
    position: fixed;
    top: 20px;
    right: 20px;
}

.login {
    background-color: navy;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: sans-serif;
    transition: background 0.2s;
}

.login-btn {
    background-color: navy;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-family: "Helvetica-Bold", sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    max-width: 350px;
}

.login:hover {
    background-color: rgb(0, 0, 170);
}

.login-btn:hover {
    background-color: rgb(0, 0, 170);
}