/* Outings Custom IDP Styling */
/* Matches ReTree Hawaii layout with Outings nature theme colors */

body {
    background: #F9FFF9; /* Light green background to match outings */
    background-color: #f0ffe6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='92' viewBox='0 0 112 92'%3E%3Cg fill='%23248e35' fill-opacity='0.05'%3E%3Cpath fill-rule='evenodd' d='M72 10H40L16 20H0v8h16l24-14h32l24 14h16v-8H96L72 10zm0-8H40L16 4H0v8h16l24-6h32l24 6h16V4H96L72 2zm0 84H40l-24-6H0v8h16l24 2h32l24-2h16v-8H96l-24 6zm0-8H40L16 64H0v8h16l24 10h32l24-10h16v-8H96L72 78zm0-12H40L16 56H0v4h16l24 14h32l24-14h16v-4H96L72 66zm0-16H40l-24-2H0v4h16l24 6h32l24-6h16v-4H96l-24 2zm0-16H40l-24 6H0v4h16l24-2h32l24 2h16v-4H96l-24-6zm0-16H40L16 32H0v4h16l24-10h32l24 10h16v-4H96L72 18z'/%3E%3C/g%3E%3C/svg%3E");
    margin: 0em;
    margin-left: 1%;
    margin-right: 1%;
    font-family: "Lucida Grande", "Arial", sans-serif;
    color: #464646;
}

.container {
    background: #FFFFFF;
    max-width: 420px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #DFDFDF;
    text-align: center;
    border-radius: 8px;
}

h1 {
    font: italic 22px Georgia;
    color: #248e35; /* Outings green for headings */
    margin-bottom: 20px;
}

form {
    margin-top: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 12px;
    font-weight: normal;
    color: #464646;
}

input[type=text], input[type=email], input[type=password] {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    background: #F9F9F9;
    border: 1px solid #DFDFDF;
    color: #464646;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "Lucida Grande", "Arial", sans-serif;
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus {
    outline: none;
    border-color: #248e35; /* Outings green for focus */
    background: #ffffff;
}

.error {
    color: #cc0000;
    font-size: .85rem;
    margin-bottom: 12px;
    padding: 8px;
    background: #ffe6e6;
    border: 1px solid #ffcccc;
    border-radius: 4px;
}

.success {
    color: #1f7a2e; /* Darker outings green for success text */
    font-size: .85rem;
    margin-bottom: 12px;
    padding: 8px;
    background: #e6ffe6;
    border: 1px solid #ccffcc;
    border-radius: 4px;
}

button {
    background: #248e35; /* Outings green for buttons */
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 12px;
    font-family: "Lucida Grande", "Arial", sans-serif;
    font-size: 14px;
}

button:hover {
    background: #1f7a2e; /* Darker outings green on hover */
}

.small {
    font-size: .8rem;
    color: #666;
    margin-top: 12px;
}

.links {
    text-align: center;
    margin-top: 16px;
}

.links a {
    color: #248e35; /* Outings green for links */
    text-decoration: none;
    margin: 0 8px;
}

.links a:hover {
    text-decoration: underline;
}

/* Cancel link styling */
p a {
    color: #248e35; /* Outings green for cancel links */
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

/* Nature-themed subtle pattern for background (very light) */
body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='92' viewBox='0 0 112 92'%3E%3Cg fill='%23248e35' fill-opacity='0.02'%3E%3Cpath fill-rule='evenodd' d='M72 10H40L16 20H0v8h16l24-14h32l24 14h16v-8H96L72 10zm0-8H40L16 4H0v8h16l24-6h32l24 6h16V4H96L72 2zm0 84H40l-24-6H0v8h16l24 2h32l24-2h16v-8H96l-24 6zm0-8H40L16 64H0v8h16l24 10h32l24-10h16v-8H96L72 78zm0-12H40L16 56H0v4h16l24 14h32l24-14h16v-4H96L72 66zm0-16H40l-24-2H0v4h16l24 6h32l24-6h16v-4H96l-24 2zm0-16H40l-24 6H0v4h16l24-2h32l24 2h16v-4H96l-24-6zm0-16H40L16 32H0v4h16l24-10h32l24 10h16v-4H96L72 18z'/%3E%3C/g%3E%3C/svg%3E");
}