.menu,
div[rel=menu_mobile] {
  display: none !important;
}

.center-center {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  height: calc(100vh - 300px);
  position: relative;
}

main {
  min-height: calc(100vh - 170px);
}

.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 100px); /* Adjust height to account for mobile browser UI */
    padding: 16px;
    box-sizing: border-box;
}
.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
}
.login-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}
.login-fields label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #222;
    display: block;
    text-align: left;
}
.login-fields input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 16px;
    background: #FAFAFA;
    outline: none;
    transition: border 0.2s;
}
.login-fields input:focus {
    border: 1.5px solid #2196F3;
    background: #fff;
}
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.password-wrapper input {
    margin-bottom: 0;
}
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.login-forgot {
    text-align: right;
    margin: 10px 0 10px;
}
.login-forgot a {
    color: #2196F3;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}
.login-error {
    color: #F04438;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: left;
    min-height: 18px;
}
.login-btn {
    width: 100%;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.login-btn:hover {
    background: #1976D2;
}

.reset-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.reset-actions .btn {
    flex: 1 1 auto;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.reset-actions .btn-primary {
    background-color: #2196F3;
    color: white;
}
.reset-actions .btn-primary:hover {
    background-color: #1976D2;
}

.reset-actions .btn-secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #E0E0E0;
}

.reset-actions .btn-secondary:hover {
    background-color: #f5f5f5;
}

@media (min-width: 340px) and (max-width: 799px) {
  main {
    min-height: calc(100vh - 230px);
  }
}
@media (min-width: 800px) and (max-width: 1199px) {
  main {
    min-height: calc(100vh - 200px);
  }
}

