body {
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    font-family: 'Quicksand', Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.borrow-container {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    text-align: center;
    max-width: 350px;
}

h1 {
    color: #2d5a8c;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    letter-spacing: 1px;
}

p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

input[type="text"], input[type="email"] {
    width: 90%;
    padding: 0.7rem;
    margin-bottom: 1.2rem;
    border: 1px solid #b8c6db;
    border-radius: 8px;
    font-size: 1rem;
    background: #f4f8fb;
    transition: border 0.2s;
}

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

.borrow-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #2d5a8c 60%, #4fc3f7 100%);
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.13);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.borrow-btn:hover {
    background: linear-gradient(90deg, #4fc3f7 0%, #2d5a8c 100%);
    transform: scale(1.06);
    color: #ffd700;
}

.success-message {
    color: #27ae60;
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}