body {
        margin: 0;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: Arial, sans-serif;

        /* Turf background */
        background:
            url("/static/turf_img.jpeg") no-repeat center center/cover;
    }

    /* Mobile card */
    .container {
        width: 340px;
        background: #ffffff;
        border-radius: 20px;
        padding: 30px 30px 40px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    }

    /* Icon */
    .icon {
        width: 55px;
        height: 55px;
        border: 2px solid #2e7d32;
        border-radius: 50%;
        margin: -55px auto 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        background: #e8f5e9;
        color: #2e7d32;
    }

    h2 {
        margin: 10px 0 20px;
        font-size: 18px;
        color: #2e7d32;
    }

    /* Inputs */
    input {
        width: 100%;
        padding: 10px;
        margin-bottom: 14px;
        border: 1.8px solid #2e7d32;
        border-radius: 8px;
        font-size: 13px;
    }

    input:focus {
        outline: none;
        box-shadow: 0 0 5px rgba(46,125,50,0.6);
    }

    /* Login button */
    button {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 10px;
        background: #2e7d32;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        margin-top: 5px;
    }

    button:hover {
        background: #1b5e20;
    }

    /* Register link */
    .register-link {
        margin-top: 15px;
        font-size: 13px;
    }

    .register-link a {
        color: #2e7d32;
        font-weight: bold;
        text-decoration: none;
    }

    .register-link a:hover {
        text-decoration: underline;
    }
     p{
    color: green;
    font-size: 0.8rem;
    margin-bottom: 30px;
}
.flash {
      margin-top: 15px;
      background: rgba(198, 224, 214, 0.15);
      border: 1px solid rgba(75, 250, 177, 0.4);
      color: #1de70b;
      padding: 10px;
      border-radius: 8px;
      text-align: center;
      font-size: 13px;
    }