@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Global body styles */
body {
    background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    min-height: 100vh;
    padding: 0;
}

/* Navigation bar */
.navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-brand, .nav-link {
    color: #007bff !important;
}

.navbar-brand:hover, .nav-link:hover {
    color: #0056b3 !important;
}

/* Main container */
.container {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    margin: 3rem auto;
    max-width: 800px; /* Increased for better content display */
    padding: 2.5rem 2rem 2rem 2rem;
}

/* Jumbotron */
.jumbotron {
    background: linear-gradient(90deg, #007bff 0%, #00c6ff 100%);
    color: white;
    border-radius: 10px;
    padding: 2rem;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn-primary {
    background: #007bff;
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Form styles */
.form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Footer */
footer {
    background: #343a40 !important;
}

/* Headings */
h1, h2, h3 {
    color: #f76b1c;
    margin-bottom: 1.2rem;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
}

input[type="text"], input[type="email"], input[type="password"] {
    background: #fff8f1;
    border: 1px solid #fda085;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.7rem;
    transition: border 0.2s;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
    border: 1.5px solid #f76b1c;
    outline: none;
}

button, input[type="submit"] {
    background: linear-gradient(90deg, #f76b1c 0%, #ffb347 100%);
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 0;
    transition: background 0.2s;
}

button:hover, input[type="submit"]:hover {
    background: linear-gradient(90deg, #ffb347 0%, #f76b1c 100%);
}

/* Paragraph and message styles */
p, .message {
    color: #333;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.message.success {
    color: #2ecc40;
}

.message.error {
    color: #e74c3c;
}