.profile {
  font-family: var(--secondary-font);
  background-color: var(--background-light-color);
  height: 100vh;
}

/* === Typography === */

h2 {
  font-weight: 500;
}

.app-title {
  font-family: var(--primary-font);
  font-size: 2.5em;
  margin-top: 40px;
}

/* === Sections === */

.auth-fields-and-buttons {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* === User Section === */

.user-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8em;
}

.user-section img {
  width: 3.75em;
  height: 3.75em;
  border-radius: 100%;
  border: var(--border-width) solid var(--dark-color);
}

.user-section h2 {
  font-size: 1.2em;
}

/* === Structure === */

#logged-out-view .container {
  gap: 2em;
}

.app-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* === Common for elements === */

input, button {
  font-family: inherit;
  padding: var(--element-padding);
  border-radius: var(--element-border-radius);
  width: 100%;
  box-sizing: border-box;
  font-size: 1.1em;
  text-align: center;
  border: var(--border-width) solid var(--dark-color);
  box-shadow: 3px 3px 3px 1px var(--shadow-transparent);
}

input:focus, button:focus {
  outline: none;
}

/* === Input fields === */

input {
  font-weight: 300;
}

input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--grey-color);
  opacity: 1; /* Firefox */
}

input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--grey-color);
}

input::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--grey-color);
}

/* === Buttons === */

button {
  font-weight: 600;
  width: 100%;
}

button:hover {
  cursor: pointer;
}

.primary-btn {
  background-color: var(--primary-light-color);
  box-shadow: 0px var(--button-height) 0px 0px var(--dark-color);
  position: relative;
}

.primary-btn:hover {
  top: var(--button-height);
  box-shadow: none;
}

.secondary-btn {
  padding: 0.4em;
  background-color: transparent;
}

.secondary-btn:hover {
  color: var(--light-color);
  background-color: var(--dark-color);
}

.provider-btn {
  color: var(--dark-color);
  background-color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  border: 0;
  box-shadow: 3px 3px 3px 1px var(--shadow-transparent);
}

.provider-btn:hover {
  transition: all 0.2s ease;
  box-shadow: 0px 0px 0px 0px var(--shadow-transparent);
}

.google-btn-logo {
  width: 1.375em;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 1.875em;
}

.icon-img-btn:hover {
  filter: invert(0.5);
}

/* === IDs === */

#logged-out-view {
  display: none;
}

#logged-in-view {
  display: none;
  margin: 0;
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 50px;
}

.profile__image {
  width: 20%;
  margin-left: 15px;
  border-radius: 8px;
}