/*--------------------------------------
  Fonts
--------------------------------------*/
@font-face {
    font-display: swap;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    src: url("/style/fonts/open-sans-v40-latin-regular.woff2") format("woff2");
}

/*--------------------------------------
  Base Styles
--------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/*--------------------------------------
  Container
--------------------------------------*/
.container {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    text-align: center;
}

.container:hover {
    transform: translateY(-3px);
}

/*--------------------------------------
  Boxes & Alerts
--------------------------------------*/
.box {
    margin-bottom: 20px;
}

.error-message {
    color: #d32f2f;
    font-weight: 600;
    margin-bottom: 15px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.alert-success {
    background-color: #e6f4ea;
    color: #2e7d32;
}

.alert-danger {
    background-color: #fdecea;
    color: #c62828;
}

/*--------------------------------------
  Forms
--------------------------------------*/
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    text-align: left;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 15px;
    transition: border 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #03a9f4;
    box-shadow: 0 0 6px rgba(3, 169, 244, 0.3);
}

/*--------------------------------------
  Buttons
--------------------------------------*/
.btn-primary,
.btn-danger {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-primary {
    background-color: #03a9f4;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0288d1;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: #e53935;
    color: #fff;
}

.btn-danger:hover {
    background-color: #c62828;
    transform: translateY(-2px);
}

/*--------------------------------------
  Links
--------------------------------------*/
.back-link {
    display: block;
    margin-bottom: 15px;
    color: #03a9f4;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    text-decoration: underline;
    color: #0288d1;
}


.back-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}