/* =========================
   General
========================= */
.mrhost-move-domain-form {
    background: #fff;
    border: 1px solid #d5dfff;
    border-radius: 8px;
    padding: 25px 20px;
    font-family: "DM Sans", sans-serif;
}

.generic-page-title,
.generic-page-text,
.move-breadcrumb,
.mrhost-move-domain-form label,
.mrhost-move-domain-form ::placeholder {
    font-family: "DM Sans", sans-serif;
}

.generic-page-title {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.generic-page-text {
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.move-breadcrumb {
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .move-breadcrumb {
        text-align: left;
    }
    .generic-page-title {
        text-align: left;
    }
    .generic-page-text {
        text-align: left;
    }
}

.move-breadcrumb a {
    color: #1D1E20;
    text-decoration: none;
    transition: color 350ms ease;
}

.move-breadcrumb a:hover {
    color: #673DE6;
}

.mrhost-move-domain-form label {
    display: block;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

/* =========================
   Motivations
========================= */
.motivation-note {
    display: block;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.no-domains-info {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
}

/* =========================
   Inputs
========================= */
.mrhost-move-domain-form input,
.mrhost-move-domain-form textarea,
.mrhost-move-domain-form select {
    font-family: "DM Sans", sans-serif;
    width: 100%;
    margin-top: 10px;
    padding: 10px 14px; /* matchar incident */
    border-radius: 6px;
    border: 1px solid #d5dfff;
    font-size: 14px; /* matchar incident */
    outline: none;
    transition: border-color 0.25s ease;
    box-sizing: border-box;
}

.mrhost-move-domain-form input:focus,
.mrhost-move-domain-form textarea:focus,
.mrhost-move-domain-form select:focus {
    border-color: #673DE6;
}

/* Placeholder */
.mrhost-move-domain-form ::placeholder {
    font-family: "DM Sans", sans-serif;
    opacity: 0.7;
}

/* =========================
   Buttons
========================= */
.mrhost-move-domain-form button {
    margin-top: 20px;
    width: 100%;
    padding: 13px;
    background: #673DE6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mrhost-move-domain-form button:hover {
    background: #5025D1;
}

/* Disabled radio buttons */
.move-radio input[disabled] + span {
    opacity: 0.5;          /* Gör texten halvtransparent */
    cursor: not-allowed;    /* Visar "förbjudet"-cursor */
}

/* =========================
   Radio buttons
========================= */
.move-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.move-radio input {
    display: none;
}

.move-radio span {
    padding: 10px 18px;
    border: 1px solid #d5dfff;
    border-radius: 8px;
    cursor: pointer;
    background: #fafbff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.move-radio input:checked+span {
    background: #673DE6;
    color: #fff;
    border-color: #673DE6;
}

/* Radio hover effect */
.move-radio span:hover {
    border-color: #5025D1;
    background-color: #eaeaff;
}

/* Hosting packages link */
.package-link {
    display: block;
    margin-top: 5px;
    margin-bottom: 15px;
    margin-top: -10px;
    font-size: 12px;
}

.package-link a {
    color: #673DE6;
    text-decoration: none;
}

/* =========================
   Checkbox
========================= */

.mrhost-move-domain-form label.mrhost-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mrhost-move-domain-form .mrhost-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0px;
    accent-color: #673DE6;
}

.mrhost-move-domain-form .mrhost-checkbox span {
    display: flex;
    align-items: center;
    font-weight: 400;
    line-height: 1.4;
}

.mrhost-move-domain-form .mrhost-checkbox a {
    margin-left: 4px;
    color: #1D1E20;
    transition: color 0.2s ease;
}

.mrhost-move-domain-form .mrhost-checkbox a:hover {
    color: #673DE6;
}

/* =========================
   Custom dropdown
========================= */
.mrhost-move-domain-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fafbff;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23673DE6' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding: 10px 45px 10px 14px;
    cursor: pointer;
    border: 1px solid #d5dfff;
    border-radius: 6px;
    font-size: 14px; /* matchar incident */
    color: #1D1E20;
}

.mrhost-move-domain-form select option {
    background-color: #fff;
    color: #1D1E20;
}
/* =========================
   Feedback
========================= */
.move-feedback {
    display: block;
    margin-top: 12px; /* lite luft ovanför */
    font-size: 14px;
    color: #1D1E20;
}

@media (max-width: 600px) {

    .mrhost-move-domain-form input,
    .mrhost-move-domain-form textarea {
        font-size: 16px;
    }
}