/* kurv.css */ 

/* kurv_bestil.php style start */
/* Container */
.form-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Form box */
.form-box {
    flex: 1 1 320px;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    background: #f5f5f5;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Headings */
.form-box h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Input containers */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

/* Input fields */
.input-group input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

/* Icons inside input */
.input-group i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* Submit button */
.form-box input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.form-box input[type="submit"]:hover {
    background: #0056b3;
}

/* Links */
.form-box a {
    color: #007BFF;
    text-decoration: none;
}

.form-box a:hover {
    text-decoration: underline;
}

/* Paragraphs */
.form-box p {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}
/* kurv_bestil.php style stop */