/* src/app.css */

/* Reset and global styles */

html {
  scroll-behavior: smooth;

}

body, h1, h2, h3, p, ul, li, input, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'montserrat';
}

body {
  background-color: #f0f2f5;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;

}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container for centering content */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f2f5;
}

/* Box styling for forms and content */
.box {
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

/* Heading styling */
h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

/* Input fields styling */
input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

/* Button styling */
button {
  width: 100%;
  padding: 12px 20px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

.logout-button {
  background-color: #d9534f;
}

.logout-button:hover {
  background-color: #c9302c;
}

/* Link container */
.link {
  text-align: center;
  margin-top: 10px;
}

.link a {
  cursor: pointer;
}

/* Google Button Styles */
.google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px; /* Match the padding */
  margin: 10px 0 20px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
  color: #757575;
  font-size: 16px; /* Match the font size */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.google-button:hover {
  background-color: #f7f7f7;
}

.google-icon {
  height: 18px;
  margin-right: 8px;
}


@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}