@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.otf');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: 'Gotham', sans-serif;
    background-color: rgb(15, 15, 15);
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-width: 370px;
    height: auto;
    display: block;
}

.content {
    width: 340px;
}

.page {
    display: flex;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
}

.input-isle {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgb(50, 50, 50);
    background-color: rgb(20, 20, 20);
    color: white;
    outline: none;
}

.input-isle::placeholder {
    color: rgb(70, 70, 70);
}

.input-isle-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgb(50, 50, 50);
    background-color: rgb(20, 20, 20);
    color: rgb(50, 50, 50);
    cursor: pointer;
    transition: all 0.2s ease;
}

.input-isle-btn:hover {
    color: white;
}


.links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.links a {
  color: rgb(70, 70, 70);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.links a:hover {
  color: white;
}