@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #023047;
}

header {
    background-color: #1e1e1e;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    flex: 0;
    min-width: 110px;
}

.logo img {
    max-width: 70%;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
}

.navbar a:hover {
    color: #fbc531;
}

.icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 120px;
}

.icons img {
    margin-left: 15px;
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}




.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #15dc5e;
}


form {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 7px;
    padding: 40px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.4);
    gap: 5px;
}

.form h1{
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 2.3em;
}

input{
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    margin-top: 5px;
    border-radius: 4px;
    transition: all linear 160ms;
    outline: none;
}


label {
    font-size: 14px;
    font-weight: 500;
}

.btn {
    background-color: #090909;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none !important;
    transition: all linear 160ms;
    cursor: pointer;
    margin: 0 !important;

}
