/* RideFormz Global Portal Styles */

body.pin-body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    background-image: url('../images/fence.png');
    background-repeat: repeat;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
}

body.pin-body::before {
    content: "";
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.pin-container {
    position: relative;
    padding: 30px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.7);
    text-align: center;
    width: 100%;
    max-width: 450px;
    border: 1px solid #444;
    box-sizing: border-box;
    background: #2d2d2d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.plate-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.pin-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.portal-logo {
    max-width: 260px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.8));
}

.pin-container h2 {
    margin-bottom: 10px;
    color: #ff6600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
    font-size: 20px;
}

.sidebar-subtitle {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 20px;
}

form {
    width: 100%;
    max-width: 250px;
}

.pin-input {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 5px;
    border: 1px solid #444;
    border-radius: 4px;
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.pin-btn, .btn {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.pin-btn:hover, .btn:hover {
    background-color: #e55c00;
}

.error-msg {
    color: #ff4d4d;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.9);
}