﻿
.header-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.form-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

    .form-container h1 {
        font-size: 40px;
        color: #FF7601;
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
    }

    .form-container p {
        font-size: 20px;
        color: #444;
        text-align: center;
        margin-bottom: 20px;
    }

.reg-form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    font-size: 20px;
    font-family: "Vesper Libre", serif;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

textarea,.form-group select {
    background-color: #e6f0ff;
    color: #333;
    border: 1px solid #b3d1ff;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

    input:focus,
    textarea:focus,
    .form-group select:focus{
        outline: none;
        border-color: #FF7601;
    }

.Register-btn {
    padding: 5px 20px;
    background-color: #FF7601;
    color: white;
    border: none;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
}

.fa-hand-point-right {
    color: #FF7601;
    font-size: 20px;
}

.items li {
    font-size: 20px;
    margin-bottom: 7px;
    font-family: "Vesper Libre", serif;
}

@keyframes blink-reg {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.blinking-text-Reg {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(45deg,#7D0A0A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);*/
    animation: blink-reg 3s infinite;
    display: inline-block;
    text-align:center;
}
