body {
    font-family: "Segoe UI", "sans-serif";
}
h1 {
    
    font-family: 'Segoe UI', sans-serif;
}
textarea, 
input[type="text"], 
input[type="email"], 
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}


textarea:focus, 
input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}


button {
    background-color: #4A90E2;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

button:hover {
    background-color: #357ABD;
}

button:active {
    transform: scale(0.98);
}


button.secondary {
    background-color: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
    margin-left: 10px;
}

button.secondary:hover {
    background-color: #4A90E2;
    color: white;
}

.container {
    width: 80%;
    margin: auto;
}

.results {
    margin-top: 30px;
}

a {
    color: blue;
}

header {
    padding: 10px;
    background: #111;
    color: white;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;

}
header a {
    color: white;
}