@import "shared.css";

.cat-page {
  height: 100%;
}

.cat-list {
  background-color: black;
}

.cat-list-cont {
  gap: 0.8rem;
  padding: 1rem;
  height: 100%;
  overflow-y: scroll;
}

.cat-div-btn {
  text-decoration: none;
}

.cat-cont {
  border: 0.063rem solid var(--text-light-color);
  background-color: white;
  -webkit-box-shadow: 3px 1px 8px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 3px 1px 8px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 3px 1px 8px 0 rgba(0, 0, 0, 0.25);
}

.cat-icon {
  padding: 0.5rem;
  width: 5rem;
}

.cat-data {
  width: 100%;
  padding: 0.5rem;
}

.cat-info {
  justify-content: space-between;
  align-items: center;
  height: 60%;
}

.cat-name {
  color: var(--text-semi-light-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.cat-amount {
  color: var(--text-dark-color);
  font-weight: 700;
  font-size: 1rem;
}

.cat-date-cont {
  justify-content: center;
  height: 40%;
}

.cat-date {
  font-weight: 700;
  color: var(--text-semi-light-color);
  font-size: 0.8rem;
}

.cat-add-new {
  color: white;
  background-color: var(--secondary-color);
  position: fixed;
  bottom: 0;
  height: 4rem;
  width: 100%;
}

.cat-add-new::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.6rem;
  border: 0.063rem solid #fff;
  z-index: 2;
}
@import "shared.css";

.dev-cont {
  height: 100vh;
  background-color: var(--background-color);
  padding: 1rem 0;
}

.dev-info {
  border: 0.063rem solid var(--text-light-color);
  background-color: white;
  padding: 0 1rem;
}

.new_user {
  margin: 0;
}

.dev-links-cont {
  padding: 1rem;
  text-align: center;
}

.dev-link-btn {
  color: var(--text-semi-dark-color);
}

.dev-input {
  width: 100%;
  border: none;
  padding: 0.8rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark-color);
}

.dev-input::-webkit-input-placeholder {
  color: var(--text-semi-light-color);
}

.dev-input::-ms-input-placeholder {
  color: var(--text-semi-light-color);
}

.dev-input::-moz-placeholder {
  color: var(--text-semi-light-color);
}

.dev-input::placeholder {
  color: var(--text-semi-light-color);
}

.dev-checkbox {
  margin: 0;
  margin: 1rem 0;
  border: 0.063rem solid var(--text-semi-light-color);
  border-radius: var(--radius-4);
}

.dev-sep {
  height: 0.063rem;
  background-color: var(--text-light-color);
  padding: 0 2rem;
  opacity: 0.2;
}

.dev-btn {
  width: 100%;
}

.dev-actions {
  padding: 1rem;
  text-align: center;
}
@import "shared.css";

.nav-bar {
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
}

.navbar-back-btn {
  width: 1.5rem;
}

.navbar-title {
  color: white;
  font-family: var(--font-family-nunito);
  font-weight: 700;
  font-size: 1rem;
}

.navbar-btn {
  color: white;
  font-family: var(--font-family-nunito);
  font-weight: 300;
  font-size: 0.9rem;
  border: none;
  background-color: transparent;
}
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;600;700&family=Righteous&display=swap');

:root {
  --primary-color: #3778c2;
  --secondary-color: #5fb523;
  --background-color: #f0f2f1;
  --text-dark-color: #434b54;
  --text-semi-dark-color: #66727f;
  --text-light-color: #c6ccd2;
  --text-semi-light-color: #8e98a4;
  --success-color: #28a745;
  --info-color: #17a2b8;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-nunito: 'Nunito Sans', sans-serif;
  --font-family-righteous: 'Righteous', cursive;
  --radius-20: 1.25rem;
  --radius-8: 0.5rem;
  --radius-4: 0.25rem;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-nunito);
  box-sizing: border-box;
}

.app-container {
  background-color: var(--background-color);
  height: 100vh;
  max-height: 100vh;
  overflow: scroll;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hor-center {
  margin: auto 0;
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.ver-center {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.link-btn {
  text-decoration: none;
}
@import "shared.css";

.container {
  height: 100vh;
  background-color: var(--background-color);
  padding: 1rem;
}

.splash-banner {
  position: relative;
  width: auto;
  height: 80%;
}

.splash-logo {
  display: block;
  margin: auto;
  width: 8rem;
  margin-bottom: 1rem;
}

.splash-text {
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-family-righteous);
  font-weight: 400;
  font-size: 2.5rem;
}

.btn-cont {
  width: 100%;
  margin: auto;
  font-family: var(--font-family-nunito);
}

.link-btn {
  text-decoration: none;
}

.splash-btn {
  display: block;
  font-weight: 300;
  font-size: 1rem;
  text-align: center;
  border: 0;
  padding: 0.8rem;
}

.login-btn {
  color: white;
  background-color: var(--primary-color);
  border-radius: var(--radius-4);
}

.signup-btn {
  color: var(--text-semi-dark-color);
  background-color: var(--background-color);
}

.sign-down {
  color: white;
  background-color: var(--danger-color);
  border-radius: var(--radius-4);
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
